OFFSET
0,2
COMMENTS
Binomial transform of A370286.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..600
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k) * A370286(k).
a(n) = [x^n] ((1+x)^3 + x + x^2)^n.
From Peter Bala, Sep 23 2025: (Start)
The Gauss congruences hold: a(n*p^r) == a(n*p^(r-1)) (mod p^r) for all primes p and positive integers n and r.
Equivalently, exp( Sum_{n >= 1} a(n)*x^n/n ) = 1 + 4*x + 20*x^2 + 113*x^3 + 688*x^4 + 4404*x^5 + ... has integer coefficients. See A108447.
2*(2*n - 1)*(74*n - 95)*n*a(n) = 8*(296*n^3 - 676*n^2 + 440*n - 81)*a(n-1) + 16*(n - 1)*(37*n^2 - 66*n + 12)*a(n-2) - 5*(n - 1)*(n - 2)*(74*n - 21)*a(n-3) with a(0) = 1, a(1) = 4 and a(2) = 24. (End)
a(n) ~ sqrt(1/4 + 2*sqrt(10/111)*cos(arccos(3*sqrt(111/10)/10)/3)) * (8/3 + 2*sqrt(70)*cos(arccos(4537/(560*sqrt(70)))/3)/3)^n / sqrt(Pi*n). - Vaclav Kotesovec, Oct 19 2025
MATHEMATICA
Table[Sum[Binomial[n, k]*Binomial[n+2*k, k], {k, 0, n}], {n, 0, 25}] (* Vincenzo Librandi, Sep 19 2025 *)
PROG
(PARI) a(n) = sum(k=0, n, binomial(n, k)*binomial(n+2*k, k));
(Magma) [&+[Binomial(n, k)*Binomial(n+2*k, k): k in [0..n]]: n in [0..20]]; // Vincenzo Librandi, Sep 19 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 18 2025
STATUS
approved
