OFFSET
0,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..80
FORMULA
a(n) ~ c * 2^(n^2/2-1), where c = 18.0796893855819714431... if n is even and c = 18.02126069886312898683... if n is odd (constants same as for A243950). - Vaclav Kotesovec, Jun 23 2014
EXAMPLE
G.f.: A(x) = 1 + x + 5*x^2 + 45*x^3 + 781*x^4 + 23981*x^5 + 1371885*x^6 +...
where
A(x)^2 = 1 + 2*x + 11*x^2 + 100*x^3 + 1677*x^4 + 49974*x^5 + 2801567*x^6 + 293257480*x^7 + 59426801521*x^8 +...+ A243950(n)*x^n +...
The terms in this sequence appear to be divisible by 5 everywhere except
a(n) == 1 (mod 5) when n = {0,1,4,5,20,21,24,25,100,101,104,105,120,121,124, 125,500,501,...}.
MATHEMATICA
a[n_] := SeriesCoefficient[Sqrt[Sum[x^m Sum[QBinomial[m, k, 2]^2, {k, 0, m}], {m, 0, n}]], {x, 0, n}]; Table[a[n], {n, 0, 16}] (* Jean-François Alcover, Apr 09 2016 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 21 2014
STATUS
approved