cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A330255 Expansion of e.g.f. Sum_{k>=1} (cosh(x^k) - 1) (even powers only).

Original entry on oeis.org

1, 13, 361, 21841, 1814401, 260124481, 43589145601, 11333696774401, 3210079038566401, 1317822591538252801, 562000363888803840001, 336953340897297630105601, 201645730563302817792000001, 165147853334842304408401920001, 132994909752412012763531673600001
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 07 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 15; Table[(CoefficientList[Series[Sum[Cosh[x^k] - 1, {k, 1, nmax}], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}] // Rest
    Table[(2 n)! DivisorSum[n, 1/(2 #)! &], {n, 1, 15}]

Formula

E.g.f.: Sum_{k>=1} x^(2*k) / ((2*k)! * (1 - x^(2*k))) (even powers only).
a(n) = (2*n)! * Sum_{d|n} 1 / (2*d)!.

A330504 Expansion of e.g.f. Sum_{k>=1} tanh(x^k).

Original entry on oeis.org

1, 2, 4, 24, 136, 480, 4768, 40320, 249856, 4112640, 39563008, 319334400, 6249389056, 82473431040, 1044235737088, 20922789888000, 355897293438976, 4408265775513600, 121616011523719168, 2757288942600192000, 31308290669925892096
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 21; CoefficientList[Series[Sum[Tanh[x^k], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    A155585[n_] := Sum[StirlingS2[n, k] (-2)^(n - k) k!, {k, 0, n}]; a[n_] := n! DivisorSum[n, A155585[#]/#! &]; Table[a[n], {n, 1, 21}]
    Table[n! DivisorSum[n, 2^(# + 1) (2^(# + 1) - 1) BernoulliB[# + 1]/(# + 1)! &, OddQ[#] &], {n, 1, 21}]

Formula

E.g.f.: Sum_{k>=1} (exp(2*x^k) - 1) / (exp(2*x^k) + 1).
a(n) = n! * Sum_{d|n} A155585(d) / d!.
a(n) = n! * Sum_{d|n, d odd} 2^(d + 1) * (2^(d + 1) - 1) * Bernoulli(d + 1) / (d + 1)!.

A330506 Expansion of e.g.f. Sum_{k>=1} arcsin(x^k).

Original entry on oeis.org

1, 2, 7, 24, 129, 840, 5265, 40320, 434385, 3900960, 40809825, 558835200, 6335076825, 91070179200, 1641957141825, 20922789888000, 359796258446625, 7663952552256000, 122832552380162625, 2615369658789888000, 62315614994643635625
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 21; CoefficientList[Series[Sum[ArcSin[x^k], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    Table[n! DivisorSum[n, ((# - 2)!!)^2/#! &, OddQ[#] &], {n, 1, 21}]

Formula

a(n) = n! * Sum_{d|n, d odd} ((d - 2)!!)^2 / d!.

A330512 Expansion of e.g.f. Sum_{k>=1} arcsinh(x^k).

Original entry on oeis.org

1, 2, 5, 24, 129, 600, 4815, 40320, 313425, 3900960, 39023775, 399168000, 6335076825, 83286403200, 1169542749375, 20922789888000, 359796258446625, 5529827983680000, 120457648437501375, 2615369658789888000, 40723609672075955625
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 21; CoefficientList[Series[Sum[ArcSinh[x^k], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    Table[n! DivisorSum[n, (-1)^((# - 1)/2) ((# - 2)!!)^2/#! &, OddQ[#] &], {n, 1, 21}]

Formula

E.g.f.: Sum_{k>=1} log(x^k + sqrt(1 + x^(2*k))).
a(n) = n! * Sum_{d|n, d odd} (-1)^((d - 1)/2) * ((d - 2)!!)^2 / d!.
Showing 1-4 of 4 results.