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

A174516
Partial sums of A002896.
1
1, 7, 97, 1957, 46687, 1219243, 33715399, 970085119, 28740443449, 870830918389, 26860099935529, 840549807424369, 26620996978712269, 851664885506669269, 27482469263443730269, 893460843597349019629, 29235859228655427097639
OFFSET
0,2
FORMULA
a(n) = Sum_{i=0..n} A002896(i).
G.f.: g/(1-x) where g is the o.g.f. of A002896. - Mark van Hoeij, Nov 12 2011
a(n) ~ 2^(2*n) * 3^(2*n + 7/2) / (35 * Pi^(3/2) * n^(3/2)). - Vaclav Kotesovec, Feb 17 2024
EXAMPLE
a(4) = 1 + 6 + 90 + 1860 + 44730 = 46687.
MATHEMATICA
b[n_] := b[n] = (* A002896 *) Binomial[2*n, n]*HypergeometricPFQ[{1/2, -n, -n}, {1, 1}, 4]; a[n_] := Sum[b[k], {k, 0, n}]; Table[a[n], {n, 0, 16}] (* Jean-François Alcover, Dec 20 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jonathan Vos Post, Mar 20 2010
STATUS
approved