[go: up one dir, main page]

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”).

A374889
Obverse convolution (n^2)**(2n-1); see Comments.
1
1, 6, 100, 2940, 132192, 8368360, 705938688, 76289850000, 10252702720000, 1674156061141344, 326009771116646400, 74554986880418359744, 19767651264345600000000, 6010708728599919162000000, 2076396132003401567272173568, 808279585896351070399895712000
OFFSET
0,2
COMMENTS
See A374848 for the definition of obverse convolution and a guide to related sequences.
FORMULA
a(n) ~ 2^(3/2) * n^(2*n + 1/2) / exp(2*n + 2 - Pi*sqrt(2*n)). - Vaclav Kotesovec, Sep 15 2024
MATHEMATICA
s[n_] := n^2; t[n_] := 2 n + 1;
u[n_] := Product[s[k] + t[n - k], {k, 0, n}]
Table[u[n], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Sep 14 2024
STATUS
approved