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!)
A187806 G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n * Product_{k=1..n+1} (1-k*x). 0
1, 2, 7, 39, 314, 3388, 46409, 776267, 15406059, 354928082, 9330754204, 276092552520, 9092298247070, 330151121828252, 13114259187006717, 566025800996830823, 26391137839213285415, 1322515573450223865750, 70912312814053387968103, 4052279260763983306587339 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Compare to: 1 = Sum_{n>=0} A082161(n)*x^n * Product_{k=1..n+1} (1-k*x).
LINKS
EXAMPLE
1/(1-x) = (1-x) + 2*x*(1-x)*(1-2*x) + 7*x^2*(1-x)*(1-2*x)*(1-3*x) + 39*x^3*(1-x)*(1-2*x)*(1-3*x)*(1-4*x) + 314*x^4*(1-x)*(1-2*x)*(1-3*x)*(1-4*x)*(1-5*x) + 3388*x^5*(1-x)*(1-2*x)*(1-3*x)*(1-4*x)*(1-5*x)*(1-6*x) +...
PROG
(PARI) {a(n)=if(n==0, 1, 1-polcoeff(sum(k=0, n-1, a(k)*x^k*prod(j=1, k+1, 1-j*x+x*O(x^n))), n))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A322152 A368927 A336185 * A369196 A300519 A103365
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 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 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)