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

A376322
(1/4) times obverse convolution (2)**(2^n + 1); see Comments.
0
1, 5, 35, 385, 7315, 256025, 17153675, 2247131425, 582007039075, 299733625123625, 307826433001962875, 631352014087025856625, 2587911905742718986305875, 21207938067561582092776645625, 347534481113131645754330891856875, 11389052480558437163015177657041650625
OFFSET
0,2
COMMENTS
See A374848 for the definition of obverse convolution and a guide to related sequences.
FORMULA
a(n) = a(n-1)*A062709(n) for n>=1.
a(n) = (1/4)((3)**(2^n)) = (1/4)(A010701(n)**A000079(n)) for n>=0.
MATHEMATICA
s[n_] := 2; t[n_] := 2^n + 1;
u[n_] := (1/4) Product[s[k] + t[n - k], {k, 0, n}];
Table[u[n], {n, 0, 20}]
(* or *)
Table[2^(n*(n+1)/2 - 2) * QPochhammer[-3, 1/2, n+1], {n, 0, 15}] (* Vaclav Kotesovec, Sep 20 2024 *)
KEYWORD
nonn
AUTHOR
Clark Kimberling, Sep 20 2024
STATUS
approved