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!)
A349022 G.f. satisfies A(x) = 1/(1 - x/(1 - x*A(x))^3)^4. 1
1, 4, 22, 152, 1161, 9460, 80550, 708172, 6379368, 58576168, 546215580, 5158542152, 49239812893, 474285453628, 4604149947276, 44999181550032, 442430807369519, 4372944634271688, 43425156714959956, 433049078716727332, 4334925824762251939 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
If g.f. satisfies: A(x) = 1/(1 - x/(1 - x*A(x))^s)^t, then a(n) = Sum_{k=0..n} binomial(t*n-(t-1)*(k-1),k) * binomial(n+(s-1)*k-1,n-k)/(n-k+1).
MAPLE
A349022 := proc(n)
add(binomial(4*n-3*(k-1), k)*binomial(n+2*k-1, n-k)/(n-k+1), k=0..n) ;
end proc:
seq(A349022(n), n=0..40) ; # R. J. Mathar, Jan 25 2023
PROG
(PARI) a(n, s=3, t=4) = sum(k=0, n, binomial(t*n-(t-1)*(k-1), k)*binomial(n+(s-1)*k-1, n-k)/(n-k+1));
CROSSREFS
Sequence in context: A307439 A189845 A039304 * A267219 A152404 A062817
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 06 2021
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 May 3 09:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)