OFFSET
0,4
COMMENTS
Let k be a positive integer. It appears that reducing this sequence modulo k produces an eventually periodic sequence with period a multiple of k. For example, modulo 9 the sequence becomes [1, 1, 1, 7, 6, 2, 7, 0, 1, 1, 0, 8, 7, 0, 7, 7, 0, 8, 1, 0, 1, 7, 0, 2, 7, 0, 1, 1, 0, 8, 7, 0, 7, 7, 0, 8, 1, 0, 1, 7, 0, 2, 7, 0, 1, ...], with an apparent period [2, 7, 0, 1, 1, 0, 8, 7, 0, 7, 7, 0, 8, 1, 0, 1, 7, 0] of length 18 starting at a(5). - Peter Bala, Apr 16 2023
LINKS
Winston de Greef, Table of n, a(n) for n = 0..425
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = A362043(n,2*n).
a(n) = n! * [x^n] exp(x + n*x^3/3).
E.g.f.: exp( ( -LambertW(-x^3) )^(1/3) ) / (1 + LambertW(-x^3)).
a(n) ~ (1 + 2*cos(2*Pi*mod(n,3)/3 - sqrt(3)/2)/exp(3/2)) * n^n / (sqrt(3) * exp(2*n/3 - 1)). - Vaclav Kotesovec, Apr 18 2023
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp((-lambertw(-x^3))^(1/3))/(1+lambertw(-x^3))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 15 2023
STATUS
approved