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!)
A185522 a(n) equals the coefficient of x^n in the (n-1)-th iteration of x*(1+x)/(1-x) for n>=1. 2
1, 2, 12, 138, 2320, 51450, 1418004, 46736466, 1793145792, 78506270994, 3862498271324, 210975923301242, 12668208032568400, 829409050807729002, 58804315058897866020, 4488388292080413635362, 366956820758560590789376 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
Given G(x) = x*(1+x)/(1-x):
G(x) = x + 2*x^2 + 2*x^3 + 2*x^4 + 2*x^5 + 2*x^6 +...
then the initial coefficients of the n-th iterations of G(x) begin:
n=0: [(1), 0, 0, 0, 0, 0, 0, ...];
n=1: [1,(2), 2, 2, 2, 2, 2, 2, 2, ...];
n=2: [1, 4,(12), 32, 80, 196, 476, 1152, 2784, ...];
n=3: [1, 6, 30,(138), 602, 2542, 10518, 42994, ...];
n=4: [1, 8, 56, 368,(2320), 14216, 85368, 505312, ...];
n=5: [1, 10, 90, 770, 6370,(51450), 408202, 3194978, ...];
n=6: [1, 12, 132, 1392, 14272, 143372,(1418004), 13854368, ...];
n=7: [1, 14, 182, 2282, 27930, 335846, 3983518,(46736466), ...]; ...;
the coefficients in parenthesis form the initial terms of this sequence.
PROG
(PARI) {a(n)=local(A=x, G=x*(1+x)/(1-x+x*O(x^n))); for(i=1, n-1, A=subst(G, x, A+x*O(x^n))); polcoeff(A, n)}
CROSSREFS
Sequence in context: A117513 A343439 A297078 * A119819 A330655 A093543
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 30 2011
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 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)