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