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!)
A336270 a(n) = Sum_{k=0..n} Sum_{j=0..k} (binomial(n,k) * binomial(k,j))^n. 4
1, 3, 15, 381, 67635, 83118753, 813824623689, 58040410068847251, 32150480245981639533315, 154935057570894645075940703673, 5474671509704049919709361235659936825, 1600436120524545216094358662984789029130593831 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (n!)^n * [x^n] (Sum_{k>=0} x^k / (k!)^n)^3.
MATHEMATICA
Table[Sum[Sum[(Binomial[n, k] Binomial[k, j])^n, {j, 0, k}], {k, 0, n}], {n, 0, 11}]
Table[(n!)^n SeriesCoefficient[Sum[x^k/(k!)^n, {k, 0, n}]^3, {x, 0, n}], {n, 0, 11}]
PROG
(PARI) a(n) = sum(k=0, n, sum(j=0, k, (binomial(n, k) * binomial(k, j))^n)); \\ Michel Marcus, Jul 16 2020
CROSSREFS
Sequence in context: A103031 A338183 A012474 * A296940 A193119 A309069
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 15 2020
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 19:24 EDT 2024. Contains 371962 sequences. (Running on oeis4.)