OFFSET
1,2
REFERENCES
Michael Baake, "Solution of the coincidence problem in dimensions d <= 4", in R. V. Moody, ed., Math. of Long-Range Aperiodic Order, Kluwer 1997, pp. 9-44.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
M. Baake and N. Neumarker, A Note on the Relation Between Fixed Point and Orbit Count Sequences, JIS 12 (2009) 09.4.4, Section 3.
FORMULA
f(Q, n) = Sum_{d|n} d*f(Q-1, d); here Q=6.
Multiplicative with a(p^e) = product (p^(e+k)-1)/(p^k-1), k=1..5.
Dirichlet g.f.: zeta(s)*zeta(s-1)*zeta(s-2)*zeta(s-3)*zeta(s-4)*zeta(s-5). Dirichlet convolution of A038992 with A000584. - R. J. Mathar, Mar 31 2011
Sum_{k=1..n} a(k) ~ c * n^6, where c = Pi^12*zeta(3)*zeta(5)/3061800 = 0.376266... . - Amiram Eldar, Oct 19 2022
MATHEMATICA
f[p_, e_] := Product[(p^(e + k) - 1)/(p^k - 1), {k, 1, 5}]; a[1] = 1; a[n_] := Times @@ (f @@@ FactorInteger[n]); Array[a, 100] (* Amiram Eldar, Aug 29 2019 *)
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by R. J. Mathar, Mar 31 2011
More terms from Amiram Eldar, Aug 29 2019
STATUS
approved