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!)
A250117 G.f. A(x) satisfies: [x^n] A(x)^((n+1)(n+2)/2) = 0 for n>1 with a(0)=1 and a(1)=2. 1
1, 2, -10, 84, -868, 9872, -121392, 1522000, -20885744, 249139392, -4898915424, -6811333312, -4215314380800, -213186664776192, -15944754147807232, -1207550934725368320, -100056122156079206144, -8876452703027927096320 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
This was formerly A147316, but has been renumbered because of a conflict.
LINKS
EXAMPLE
G.f.: A(x) = 1 + 2*x - 10*x^2 + 84*x^3 - 868*x^4 + 9872*x^5 +...
The coefficients in the triangular powers of g.f. A(x) begin:
A^1: [1, 2, -10, 84, -868, 9872, -121392, 1522000, -20885744, ...];
A^3: [1, 6, -18, 140, -1416, 15768, -193960, 2369664, -33862320, ...];
A^6: [1, 12, 0, 64, -828, 9504, -128128, 1447680, -25886016, ...];
A^10:[1, 20, 80, 0, -100, 704, -37440, 83200, -15426800, ...];
A^15:[1, 30, 270, 700, 0, -1944, -28600, -627360, -19260000, ...];
A^21:[1, 42, 630, 4004, 9492, 0, -73696, -1380240, -37310112, ...];
A^28:[1, 56, 1232, 13440, 74984, 189728, 0, -3286016, -76931120, ...];
A^36:[1, 72, 2160, 34944, 329112, 1804896, 5181696, 0, -170026128, ...];
A^45:[1, 90, 3510, 77700, 1073700, 9579168, 54737280, 181761840, 0,...]; ...
Note how the coefficient of x^n in A(x)^((n+1)(n+2)/2) = 0 for n>1.
PROG
(PARI) {a(n)=local(A=[1, 2]); for(m=3, n+1, A=concat(A, 0); A[#A]=-Vec(Ser(A)^(m*(m+1)/2))[m]/(m*(m+1)/2)); A[n+1]}
CROSSREFS
Cf. A171791.
Sequence in context: A302572 A121516 A024491 * A244627 A113332 A321398
KEYWORD
sign
AUTHOR
Paul D. Hanna, Feb 05 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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)