The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A370256 The number of ways in which n can be expressed as b^2 * c^3, with b and c >= 1. 2
1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,64
COMMENTS
First differs from A075802 and A112526 at n = 64.
The least number k such that a(k) = n is A005179(n)^6.
The indices of records are the sixth powers of the highly composite numbers, A002182(n)^6.
LINKS
FORMULA
Multiplicative with a(p^e) = A103221(e).
a(n) > 0 if and only if n is a powerful number (A001694).
a(A001694(n)) = A057523(n).
a(n^6) = A000005(n).
Sum_{k=1..n} a(k) ~ zeta(3/2) * sqrt(n) + zeta(2/3) * n^(1/3).
Dirichlet generating function: zeta(2*s)*zeta(3*s). - Vaclav Kotesovec, Feb 23 2024
EXAMPLE
1 = 1^2 * 1^3, so a(1) = 1.
64 = 1^2 * 4^3 = 8^2 * 1^3, so a(64) = 2.
4096 = 64^2 * 1^3 = 8^2 * 4^3 = 1^2 * 16^3, so a(4096)= 3.
MATHEMATICA
f[p_, e_] := Floor[(e + 2)/2] - Floor[(e + 2)/3]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100]
PROG
(PARI) a(n) = vecprod(apply(x -> (x+2)\2 - (x+2)\3, factor(n)[, 2]));
(PARI) for(n=1, 100, print1(direuler(p=2, n, 1/((1 - X^2)*(1 - X^3)))[n], ", ")) \\ Vaclav Kotesovec, Feb 23 2024
CROSSREFS
Sequence in context: A366125 A327170 A024362 * A347245 A104488 A244413
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Feb 23 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 19 23:42 EDT 2024. Contains 372703 sequences. (Running on oeis4.)