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!)
A279220 Expansion of Product_{k>=1} 1/(1 - x^(k*(k+1)*(2*k+1)/6)). 12
1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 5, 5, 5, 5, 6, 7, 7, 7, 7, 8, 9, 9, 9, 10, 11, 13, 13, 13, 14, 15, 17, 17, 17, 18, 19, 21, 21, 22, 23, 25, 27, 27, 28, 29, 31, 33, 33, 34, 35, 37, 40, 41, 42, 44, 46, 50, 51, 52, 54, 56, 60, 61, 62, 64, 67, 72, 73, 75, 77, 81, 86, 87, 89, 91, 95, 100, 101, 103, 106, 111, 117, 119, 121, 125, 130, 137 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Number of partitions of n into nonzero square pyramidal numbers (A000330).
LINKS
M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]
M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
Eric Weisstein's World of Mathematics, Square Pyramidal Number
FORMULA
G.f.: Product_{k>=1} 1/(1 - x^(k*(k+1)*(2*k+1)/6)).
EXAMPLE
a(6) = 2 because we have [5, 1] and [1, 1, 1, 1, 1, 1].
MAPLE
h:= proc(n) option remember; `if`(n<1, 0, (t->
`if`(t*(t+1)*(2*t+1)/6>n, t-1, t))(1+h(n-1)))
end:
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1)+(t-> b(n-t, min(i, h(n-t))))(i*(i+1)*(2*i+1)/6)))
end:
a:= n-> b(n, h(n)):
seq(a(n), n=0..100); # Alois P. Heinz, Dec 28 2018
MATHEMATICA
nmax=90; CoefficientList[Series[Product[1/(1 - x^(k (k + 1) (2 k + 1)/6)), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A005857 A025809 A204591 * A114575 A131849 A362344
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 08 2016
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)