login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349115
a(n) = 8^n * P(n, 3*n), where P(n, x) is n-th Legendre polynomial.
3
1, 24, 3424, 926208, 369378816, 194988441600, 128184980586496, 100904418485993472, 92542260511611682816, 96909547417109671182336, 114095278582299648325582848, 149184455262733048487847395328, 214496285274348399077675463868416, 336346643957900669242934177071890432
OFFSET
0,2
COMMENTS
In general, for k>=1, P(n, k*n) ~ 2^n * k^n * n^(n - 1/2) / sqrt(Pi).
LINKS
Eric Weisstein's World of Mathematics, Legendre Polynomial.
FORMULA
a(n) ~ 2^(4*n) * 3^n * n^(n - 1/2) / sqrt(Pi).
MATHEMATICA
Table[8^n*LegendreP[n, 3*n], {n, 0, 15}]
PROG
(PARI) a(n) = 8^n*pollegendre(n, 3*n); \\ Michel Marcus, Nov 08 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Nov 08 2021
STATUS
approved