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!)
A209405 G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n*Product_{k=1..n+1} (1-x^k). 1
1, 2, 3, 6, 8, 15, 21, 34, 47, 74, 99, 151, 201, 287, 383, 540, 701, 970, 1255, 1688, 2171, 2882, 3657, 4801, 6058, 7819, 9816, 12566, 15619, 19826, 24540, 30812, 37950, 47319, 57901, 71769, 87435, 107525, 130482, 159660, 192721, 234633, 282240, 341656, 409549 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
G.f.: 1/(1-x) = 1*(1-x) + 2*x*(1-x)*(1-x^2) + 3*x^2*(1-x)*(1-x^2)*(1-x^3) + 6*x^3*(1-x)*(1-x^2)*(1-x^3)*(1-x^4) + 8*x^4*(1-x)*(1-x^2)*(1-x^3)*(1-x^4)*(1-x^5) +...
PROG
(PARI) {a(n)=local(A=[1]); for(i=1, n+1, A=concat(A, 0); A[#A]=1-polcoeff(sum(m=1, #A, A[m]*x^m*prod(k=1, m, 1-x^k +x*O(x^#A) )), #A) ); A[n+1]}
for(n=0, 50, print1(a(n), ", "))
CROSSREFS
Cf. A126796.
Sequence in context: A138137 A319758 A129374 * A048809 A300671 A268645
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 08 2012
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 10:07 EDT 2024. Contains 371905 sequences. (Running on oeis4.)