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!)
A107887 Column 2 of triangle A107884. 6
1, 3, 12, 67, 498, 4701, 54298, 745734, 11911221, 217418722, 4471886340, 102454974993, 2589782600870, 71643147090159, 2154145374733176, 69981625464827605, 2443741571641202568, 91309620200404008348 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: 1 = Sum_{k>=0} a(k)*x^k*(1-x)^(2+(k+1)*(k+2)/2).
EXAMPLE
G.f. = 1 + 3*x + 12*x^2 + 67*x^3 + 498*x^4 + 4701*x^5 + 54298*x^6 + ...
1 = 1*(1-x)^2 + 2*x*(1-x)^5 + 9*x^2*(1-x)^9 +
61*x^3*(1-x)^14 + 550*x^4*(1-x)^20 + 6195*x^5*(1-x)^27 +...
MATHEMATICA
a[ n_, k_: 2, j_: 1] := If[n < 1, Boole[n >= 0], a[ n, k, j] = Sum[ a[ n - 1, i, j + 1], {i, k + j}]]; (* Michael Somos, Nov 26 2016 *)
PROG
(PARI) {a(n)=polcoeff(1-sum(k=0, n-1, a(k)*x^k*(1-x+x*O(x^n))^(2+(k+1)*(k+2)/2)), n)}
CROSSREFS
Sequence in context: A337059 A294202 A107103 * A187118 A121812 A039750
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 04 2005
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 13:02 EDT 2024. Contains 371969 sequences. (Running on oeis4.)