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!)
A280375 Expansion of Sum_{k>=1} k^3*x^(k^2)/(1 - x^k). 4
1, 1, 1, 9, 1, 9, 1, 9, 28, 9, 1, 36, 1, 9, 28, 73, 1, 36, 1, 73, 28, 9, 1, 100, 126, 9, 28, 73, 1, 161, 1, 73, 28, 9, 126, 316, 1, 9, 28, 198, 1, 252, 1, 73, 153, 9, 1, 316, 344, 134, 28, 73, 1, 252, 126, 416, 28, 9, 1, 441, 1, 9, 371, 585, 126, 252, 1, 73, 28, 477, 1, 828, 1, 9, 153, 73, 344, 252, 1, 710, 757, 9, 1, 659, 126 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The sum of the cubes of the divisors of n which are <= sqrt(n).
LINKS
FORMULA
G.f.: Sum_{k>=1} k^3*x^(k^2)/(1 - x^k).
EXAMPLE
The divisors of 12 which are <= sqrt(12) are {1,2,3}, so a(12) = 1^3 + 2^3 + 3^3 = 36.
MATHEMATICA
nmax = 85; Rest[CoefficientList[Series[Sum[k^3 x^k^2/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x]]
(* Second program *)
Table[Total[Select[Divisors@ n, # <= Sqrt@ n &]^3], {n, 85}] (* Michael De Vlieger, Jan 01 2017 *)
PROG
(PARI) a(n) = my(rn = sqrt(n)); sumdiv(n, d, d^3*(d<=rn)); \\ Michel Marcus, Jan 02 2017
CROSSREFS
Sequence in context: A224835 A329725 A339354 * A067617 A230458 A246687
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 01 2017
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 March 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)