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!)
A057523 Number of ways n-th powerful (1) number can be expressed as b^2*c^3. 2
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,11
COMMENTS
Always positive. (Would be zero for any non-powerful number.)
The positive terms of A370256. - Amiram Eldar, Feb 23 2024
LINKS
FORMULA
From Amiram Eldar, Feb 23 2024: (Start)
a(n) = A370256(A001694(n)).
Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = zeta(3). (End)
EXAMPLE
a(40) = 2 since the 40th powerful number is 576 = 24^2*1^3 = 3^2*4^3.
MATHEMATICA
f[p_, e_] := Floor[(e + 2)/2] - Floor[(e + 2)/3]; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Array[s, 10000], # > 0 &] (* Amiram Eldar, Feb 23 2024 *)
PROG
(PARI) lista(kmax) = {my(e); for(k = 1, kmax, e = factor(k)[, 2]; if(k == 1 || vecmin(e) > 1, print1(vecprod(apply(x -> (x+2)\2 - (x+2)\3, e)), ", "))); } \\ Amiram Eldar, Feb 23 2024
CROSSREFS
Sequence in context: A325625 A043288 A353786 * A083235 A307609 A043287
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, Sep 02 2000
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 April 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)