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!)
A298851 a(n) = [x^n] Product_{k=1..n} 1/(1-k^2*x). 8
1, 1, 21, 1408, 196053, 46587905, 16875270660, 8657594647800, 5974284925007685, 5336898188553325075, 5992171630749371157181, 8260051854943114812198756, 13714895317396748230146099660, 26998129079190909699998105620908, 62173633286588800021263427046090792 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ c * d^n * n^(2*n - 1/2), where d = 1.774513671664430848697327843228386312953174421074432567764556466987... and c = 0.617929515483613293691991371141292259390065108300160936187723552669... - Vaclav Kotesovec, Feb 02 2018
a(n) = 2*(Sum_{k=0..n} (n-k)^(4*n)/((2*n-k)!*k!*(-1)^k)) for n>0 - Tani Akinari, Mar 09 2021
a(n) = A036969(2n,n) = A269945(2n,n). - Alois P. Heinz, Feb 19 2022
MAPLE
b:= proc(k, n) option remember; `if`(k=0, 1,
add(b(k-1, j)*j^2, j=1..n))
end:
a:= n-> b(n$2):
seq(a(n), n=0..14); # Alois P. Heinz, Feb 19 2022
MATHEMATICA
Table[SeriesCoefficient[Product[1/(1 - k^2*x), {k, 1, n}], {x, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Feb 02 2018 *)
PROG
(Maxima) a(n):=if n<1 then 1 else 2*sum((n-k)^(4*n)/((2*n-k)!*k!*(-1)^k), k, 0, n);
makelist(a(n), n, 0, 20); /* Tani Akinari, Mar 09 2021 */
CROSSREFS
Sequence in context: A281432 A231782 A221733 * A118446 A130332 A035319
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 01 2018
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 July 22 07:42 EDT 2024. Contains 374481 sequences. (Running on oeis4.)