MOOver.js/kokocina.js
ZyLacx 96e00b5b85 Who asked 2.0
not replying to messages without content, with attachments or embeds
2022-09-08 20:39:50 +02:00

15 lines
No EOL
164 B
JavaScript

h(1)
h(2)
h(3)
h(0)
function h(n) {
console.log(7*(5**n)+9+g(n))
}
function g(n) {
if (n == 0) {
return 0
}
return 9*7*(5**(n-1))+g(n-1)
}