login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A137970 G.f. satisfies A(x) = 1 + x*(1 + x*A(x)^3)^6. 5
1, 1, 6, 33, 236, 1776, 14148, 117070, 995568, 8653068, 76508562, 686035674, 6223653276, 57018806567, 526802616954, 4902775644477, 45919926029588, 432511043009679, 4094087001128088, 38927025591433926, 371607779425490280 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

FORMULA

G.f.: A(x) = 1 + x*B(x)^6 where B(x) is the g.f. of A137969.

a(n) = Sum_{k=0..n-1} C(6*(n-k),k)/(n-k) * C(3*k,n-k-1) for n>0 with a(0)=1. [From Paul D. Hanna (pauldhanna(AT)juno.com), Jun 16 2009]

PROG

(PARI) {a(n)=local(A=1+x*O(x^n)); for(i=0, n, A=1+x*(1+x*A^3)^6); polcoeff(A, n)}

(PARI) a(n)=if(n==0, 1, sum(k=0, n-1, binomial(6*(n-k), k)/(n-k)*binomial(3*k, n-k-1))) [From Paul D. Hanna (pauldhanna(AT)juno.com), Jun 16 2009]

CROSSREFS

Cf. A137969, A137971; A137968, A137972, A137974.

Sequence in context: A012522 A012326 A112903 * A024079 A118094 A121376

Adjacent sequences:  A137967 A137968 A137969 * A137971 A137972 A137973

KEYWORD

nonn

AUTHOR

Paul D. Hanna (pauldhanna(AT)juno.com), Feb 26 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 11:46 EST 2012. Contains 206011 sequences.