OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000
David P. Roberts and Fernando Rodriguez Villegas, Hypergeometric Motives, arXiv:2109.00027 [math.AG], 2021. See (5.2) p. 6.
FORMULA
From Vaclav Kotesovec, Sep 02 2021: (Start)
log(a(n)) ~ sqrt(105*zeta(3)*n)/Pi. (End)
MAPLE
with(numtheory):
b:= proc(n) option remember; nops(invphi(n)) end:
g:= proc(n) option remember; `if`(n=0, 1, add(
g(n-j)*add(d*b(d), d=divisors(j)), j=1..n)/n)
end:
a:= n-> g(n)-g(n-1):
seq(a(n), n=0..40); # Alois P. Heinz, Jun 23 2023
MATHEMATICA
nt = 100; (* number of terms *)
f[kmax_] := f[kmax] = CoefficientList[Product[1/(1 - x^EulerPhi[k]), {k, 2, kmax}] + O[x]^nt, x]; f[kmax = nt]; f[kmax += nt];
While[f[kmax] != f[kmax - nt], kmax += nt];
f[kmax] (* Jean-François Alcover, Nov 29 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Sep 02 2021
EXTENSIONS
Terms a(16) and beyond corrected by Vaclav Kotesovec, Jun 23 2023, following a suggestion from Georg Fischer
STATUS
approved