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!)
A208829 G.f.: 1/(1-x) = Sum_{n>=0} a(n) * x^n / Product_{k=1..n} (1 + k*x)^2. 1
1, 1, 3, 16, 128, 1396, 19524, 335676, 6880388, 164277924, 4487230004, 138213671308, 4744574123684, 179758555018740, 7455418866550084, 336136394342220156, 16376124700916059428, 857610538194682984548, 48057661232590025818356, 2869922852119148564815692 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare g.f. to: 1/(1-x) = Sum_{n>=0} n!*x^n/Product_{k=1..n} (1 + k*x).
LINKS
EXAMPLE
G.f.: 1/(1-x) = 1 + 1*x/(1+x)^2 + 3*x^2/((1+x)*(1+2*x))^2 + 16*x^3/((1+x)*(1+2*x)*(1+3*x))^2 + 128*x^4/((1+x)*(1+2*x)*(1+3*x)*(1+4*x))^2 +...
PROG
(PARI) {a(n)=if(n==0, 1, 1-polcoeff(sum(k=0, n-1, a(k)*x^k/prod(j=1, k, 1+j*x+x*O(x^n))^2), n))}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A088358 A082161 A264636 * A289145 A340341 A362661
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 01 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 18 13:50 EDT 2024. Contains 371780 sequences. (Running on oeis4.)