OFFSET
0,4
COMMENTS
Invert transform of A000700.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..2000
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A000700(k)*a(n-k).
From G. C. Greubel, Jan 24 2024: (Start)
G.f.: (1+x)/(2*(1+x) - x*QPochhammer(-1/x; x^2)).
G.f.: 1/( 2 - x^(1/24)*etx(x^2)^2/(eta(x^4)*eta(x)) ), where eta(x) is the Dedekind eta function. (End)
MAPLE
g:= proc(n) option remember; `if`(n=0, 1, add(add([0, d, -d, d]
[1+irem(d, 4)], d=numtheory[divisors](j))*g(n-j), j=1..n)/n)
end:
a:= proc(n) option remember; `if`(n=0, 1,
add(a(n-i)*g(i), i=1..n))
end:
seq(a(n), n=0..39); # Alois P. Heinz, Feb 09 2021
MATHEMATICA
nmax = 39; CoefficientList[Series[1/(2 - Product[(1 + x^(2 k - 1)), {k, 1, nmax}]), {x, 0, nmax}], x]
PROG
(Magma)
m:=80;
R<x>:=PowerSeriesRing(Integers(), m);
Coefficients(R!( 1/(2 - (&*[1 + x^(2*j-1): j in [1..m+2]])) )); // G. C. Greubel, Jan 24 2024
(SageMath)
m=80;
def f(x): return 1/(2 - product(1+x^(2*j-1) for j in range(1, m+3)))
def A307058_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( f(x) ).list()
A307058_list(m) # G. C. Greubel, Jan 24 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 21 2019
STATUS
approved