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!)
A119821 Coefficients of x^n in the n-th iteration of x/(1-x)^2 for n>=1. 6
1, 4, 33, 436, 8015, 189596, 5494797, 188692708, 7494744807, 338103170428, 17079035749061, 955117390512858, 58584586487137113, 3910851585418994256, 282272352712037938081, 21904366942822876046020 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The coefficient of x^n in the n-th iteration of x/(1-x) = n^(n-1) = A000169(n); does this variant have a simple formula for a(n)?
LINKS
FORMULA
a(n) = [x^n] F_n(x) where F_n(x) = F_{n-1}(F(x)) with F(x) = x/(1-x)^2.
EXAMPLE
The successive iterations of F(x) = x/(1-x)^2 begin:
F(x) = (1)x + 2x^2 + 3x^3 + 4x^4 + 5x^5 + 6x^6 + 7x^7 + 8x^8 +...
F(F(x)) = x + (4)x^2 + 14x^3 + 46x^4 + 145x^5 + 444x^6 + 1331x^7 +...
F(F(F(x))) = x + 6x^2 + (33)x^3 + 174x^4 + 892x^5 + 4480x^6 +...
F(F(F(F(x)))) = x + 8x^2 + 60x^3 + (436)x^4 + 3102x^5 + 21728x^6 +...
F(F(F(F(F(x))))) = x + 10x^2 + 95x^3 + 880x^4 + (8015)x^5 +72090x^6+..
F(F(F(F(F(F(x)))))) = x + 12x^2+138x^3+1554x^4+17255x^5+(189596)x^6+..
PROG
(PARI) {a(n)=local(F=x/(1-x)^2, G=x+x*O(x^n)); if(n<1, 0, for(i=1, n, G=subst(F, x, G)); return(polcoeff(G, n, x)))}
CROSSREFS
Sequence in context: A052885 A277184 A192548 * A102321 A268293 A193421
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 01 2006
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 25 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)