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

A374887
Obverse convolution (n^2)**(2^n); see Comments.
1
1, 4, 60, 2400, 215424, 39716352, 14347238400, 9902131200000, 12892284695347200, 31492802074536050688, 144165936575856535142400, 1238327694920559152332800000, 20010804298085003878056591360000, 610343933792029827481169622466560000
OFFSET
0,2
COMMENTS
See A374848 for the definition of obverse convolution and a guide to related sequences.
MATHEMATICA
s[n_] := n^2; t[n_] := 2^n;
u[n_] := Product[s[k] + t[n - k], {k, 0, n}]
Table[u[n], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Sep 13 2024
STATUS
approved