OFFSET
0,4
COMMENTS
The terms with even indices are related to Bernoulli numbers. For example, 183611829 = 3 * 23 * 691 * 3851 and 6669149100757 = 11^2 * 13 * 257 * 3617 * 4561.
The terms with odd indices are related to the generalized Bernoulli numbers attached to the primitive Dirichlet character of period 3 (see A002111).
FORMULA
E.g.f.: 2*x/(exp(-2*x)+exp(x)).
PROG
(Sage)
x = PowerSeriesRing(QQ, 'x').gen()
N = 20
f = (2*x/((-2*x).exp(N)+(x).exp(N))).egf_to_ogf()
print(list(f))
(PARI) my(N=25, x='x+O('x^N)); Vec(serlaplace(2*x/(exp(-2*x)+exp(x))), -N) \\ Michel Marcus, Jul 15 2023
CROSSREFS
KEYWORD
sign
AUTHOR
F. Chapoton, Jul 13 2023
STATUS
approved