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!)
A230050 G.f.: Sum_{n>=0} x^n / (1-x)^(n^3). 4
1, 1, 2, 10, 65, 564, 6191, 82050, 1295263, 23764278, 499547080, 11892550569, 317112508944, 9392408105655, 306739296397827, 10973970687363844, 427724034697254939, 18073023112616933860, 824247511186225346295, 40415810147764633887442, 2123162727678797736474583 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(k^3 + n-k-1, n-k).
Equals row sums of triangle A230049.
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 10*x^3 + 65*x^4 + 564*x^5 + 6191*x^6 + 82050*x^7 +...
where
A(x) = 1 + x/(1-x) + x^2/(1-x)^8 + x^3/(1-x)^27 + x^4/(1-x)^64 + x^5/(1-x)^125 + x^6/(1-x)^216 + x^7/(1-x)^343 +...
PROG
(PARI) {a(n)=polcoeff(sum(k=0, n, x^k/(1-x+x*O(x^n))^(k^3)), n)}
for(n=0, 25, print1(a(n), ", "))
(PARI) {a(n)=sum(k=0, n, binomial(k^3+n-k-1, n-k))}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A167449 A064170 A151410 * A340467 A278459 A278461
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 06 2013
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 29 04:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)