login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A355409 Expansion of e.g.f. 1/(1 + exp(2*x) - exp(3*x)). 4
1, 1, 7, 55, 571, 7471, 117307, 2148175, 44958571, 1058555791, 27693129307, 796934764495, 25018548004171, 850870651904911, 31163746960955707, 1222922731101304015, 51189052318085027371, 2276586205163067346831, 107204914362429152404507 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Conjecture: Let k be a positive integer. The sequence obtained by reducing a(n) modulo k is eventually periodic with period dividing phi(k) = A000010(k). For example, modulo 9 we obtain the sequence [1, 1, 7, 1, 4, 1, 1, 1, 7, 1, 4, 1, 1, 1, 7, 1, 4, 1, 1, ...] with an apparent period of 6 = phi(9) beginning at a(1). Cf. A354242. - Peter Bala, Apr 16 2024
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (3^k - 2^k) * binomial(n,k) * a(n-k).
a(n) ~ n! / ((3 + r^2) * log(r)^(n+1)), where r = (1 + 2*cosh(log((29 + 3*sqrt(93))/2)/3))/3. - Vaclav Kotesovec, Jul 01 2022
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1+exp(2*x)-exp(3*x))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (3^j-2^j)*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Cf. A371460 (binomial transform).
Sequence in context: A178922 A306046 A362080 * A112243 A083836 A326885
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 01 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 12 13:01 EDT 2024. Contains 374247 sequences. (Running on oeis4.)