OFFSET
1,2
COMMENTS
This sequence is multiplicative. - Mitch Harris, Apr 19 2005
The sequence enumerates the solutions of a system of polynomials equations modulo n, hence is multiplicative by the Chinese Remainder Theorem. The middle entry of the 3 X 3 is zero modulo n. - Michael Somos, Apr 30 2005
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
Multiplicative with a(p^e) = p^(3e - (e % 2)). - Mitch Harris, Jun 09 2005
Dirichlet g.f.: zeta(s-2)*zeta(2s-6)/zeta(2s-4). - R. J. Mathar, Mar 30 2011
Sum_{k=1..n} a(k) ~ zeta(3/2) * n^(7/2) / (7*zeta(3)). - Vaclav Kotesovec, Sep 16 2020
MATHEMATICA
f[p_, e_] := p^(3*e - (Mod[e, 2])); a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Sep 16 2020 *)
PROG
(PARI) a(n)=if(n<1, 0, n^3/core(n)) /* Michael Somos, Apr 30 2005 */
CROSSREFS
KEYWORD
nonn,mult
AUTHOR
John W. Layman, Feb 15 2001
STATUS
approved