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!)
A182952 G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n/(1+x)^(n*(3*n-1)/2). 2
1, 1, 2, 10, 92, 1314, 26216, 682006, 22067246, 858473488, 39151350362, 2052833191416, 121860108702876, 8088426308992214, 594165066779656784, 47891997458689633520, 4205027188507582359156, 399677541092136186656238 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 1 - Sum_{k=0..n-1} a(k)*(-1)^(n-k)*C(k(3k-1)/2 + n-k-1, n-k) for n>0, with a(0)=1.
EXAMPLE
1/(1-x) = 1 + x/(1+x) + 2*x^2/(1+x)^5 + 10*x^3/(1+x)^12 + 92*x^4/(1+x)^22 + 1314*x^5/(1+x)^35 + 26216*x^6/(1+x)^51 +...
PROG
(PARI) {a(n)=if(n==0, 1, polcoeff(-(1-x)*sum(m=0, n-1, a(m)*x^m/(1+x +x*O(x^n))^(m*(3*m-1)/2)), n))}
(PARI) {a(n)=if(n==0, 1, 1 - sum(j=0, n-1, a(j)*(-1)^(n-j)*binomial(j*(3*j-1)/2+n-j-1, n-j)))}
CROSSREFS
Sequence in context: A277380 A108528 A181136 * A108209 A111773 A289020
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 31 2010
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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)