OFFSET
0,2
COMMENTS
Digits of terms converge to digits of 1/zeta(4) = 90/Pi^4 (A215267).
LINKS
Chai Wah Wu, Table of n, a(n) for n = 0..39
FORMULA
a(n) = A375245(10^n).
PROG
(Python)
from sympy import mobius, integer_nthroot
def A375246(n): return int(sum(mobius(k)*(10**n//k**4) for k in range(1, integer_nthroot(10**n, 4)[0]+1)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Chai Wah Wu, Aug 07 2024
STATUS
approved