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!)
A224899 E.g.f.: Sum_{n>=0} sinh(n*x)^n. 11
1, 1, 8, 163, 6272, 389581, 35560448, 4479975823, 744707981312, 157897753198201, 41585725184933888, 13318468253704790683, 5097100004294081380352, 2297277197389011910783621, 1204339195916670860817072128, 726625952070893090583192860743 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Conjecture: Let p be prime. The sequence obtained by reducing a(n) modulo p for n >= 1 is purely periodic with period p - 1. For example, modulo 7 the sequence becomes [1, 1, 2, 0, 3, 0, 1, 1, 2, 0, 3, 0, 1, 1, 2, 0, 3, 0, ...], with an apparent period of 6. Cf. A245322. - Peter Bala, May 29 2022
LINKS
FORMULA
E.g.f.: Sum_{n>=0} exp(-n^2*x) * (exp(2*n*x) - 1)^n / 2^n.
a(n) ~ sqrt(Pi) * 2^(2*n+1) * n^(2*n+1/2) / (sqrt(3-2*log(2)) * 3^(n+1/2) * exp(2*n) * (log(2))^(2*n+1)). - Vaclav Kotesovec, Oct 28 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 8*x^2/2! + 163*x^3/3! + 6272*x^4/4! +...
where
A(x) = 1 + sinh(x) + sinh(2*x)^2 + sinh(3*x)^3 + sinh(4*x)^4 +...
MATHEMATICA
Flatten[{1, Table[Sum[Sum[Binomial[k, j] * (-1)^j * k^n*(k-2*j)^n / 2^k, {j, 0, k}], {k, 0, n}], {n, 1, 20}]}] (* Vaclav Kotesovec, Oct 29 2014 *)
Join[{1}, Rest[With[{nn=20}, CoefficientList[Series[Sum[Sinh[n*x]^n, {n, nn}], {x, 0, nn}], x] Range[0, nn]!]]] (* Harvey P. Dale, May 18 2018 *)
PROG
(PARI) {a(n)=n!*polcoeff(sum(k=0, n, sinh(k*x+x*O(x^n))^k), n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A075387 A143857 A025606 * A281830 A299075 A299840
KEYWORD
nonn,nice
AUTHOR
Paul D. Hanna, Jul 24 2013
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 April 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)