OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..5000 (first 1001 terms from Seiichi Manyama)
Aidan Carlson, Brian Hopkins, and James A. Sellers, Enumeration modulo four of overpartitions wherein only even parts may be overlined, Disc. Math. Lett. (2024) Vol. 14, 95-102. See p. 96.
FORMULA
G.f.: Product_{k>=1} (1 + x^(2*k)) / (1 - x^k).
a(n) ~ sqrt(5/6) * exp(sqrt(5*n/6)*Pi) / (8*n). - Vaclav Kotesovec, Dec 10 2016
Empirical: Sum_{n>=0} a(n) / exp(n*Pi) = exp(Pi / 24) * Gamma(3/4) / Pi^(1/4) = A388962. - Simon Plouffe, Sep 21 2025
EXAMPLE
G.f.: 1 + x + 3*x^2 + 4*x^3 + 8*x^4 + 11*x^5 + 20*x^6 + 27*x^7 + 44*x^8 + ...
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1)+(2-irem(i, 2))*add(b(n-i*j, i-1), j=1..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..44); # Alois P. Heinz, Feb 03 2025
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[(1 + x^(2*k)) / (1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 10 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 09 2016
STATUS
approved
