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!)
A307905 Coefficient of x^n in (1 + n*x + x^3)^n. 3
1, 1, 4, 30, 304, 3875, 59631, 1076383, 22309120, 522262245, 13631508400, 392535959156, 12362973152751, 422774554883590, 15600699362473876, 617888566413340503, 26145122799198386944, 1177107512023013681429, 56185125998674634494980, 2834081165961033246374350 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/3)} n^(n-3*k) * binomial(n,3*k) * binomial(3*k,k).
a(n) ~ c * n^n, where c = Sum_{k>=0} 1/(k!*(2*k)!) = HypergeometricPFQ[{}, {1/2, 1}, 1/4] = 1.52106585051363080966025715155941607334728986626976774617... - Vaclav Kotesovec, May 05 2019
MAPLE
f:= n -> coeff((1+n*x+x^3)^n, x, n):
map(f, [$0..30]); # Robert Israel, Mar 27 2023
MATHEMATICA
Flatten[{1, Table[n^n * HypergeometricPFQ[{1/3 - n/3, 2/3 - n/3, -n/3}, {1/2, 1}, -27/(4*n^3)], {n, 1, 20}]}] (* Vaclav Kotesovec, May 05 2019 *)
PROG
(PARI) {a(n) = polcoef((1+n*x+x^3)^n, n)}
(PARI) {a(n) = sum(k=0, n\3, n^(n-3*k)*binomial(n, 3*k)*binomial(3*k, k))}
CROSSREFS
Sequence in context: A054972 A052452 A348708 * A292629 A362700 A088794
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 05 2019
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 16 16:01 EDT 2024. Contains 371749 sequences. (Running on oeis4.)