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-2 of 2 results.

A302583 a(n) = ((n + 1)^n - (n - 1)^n)/2.

Original entry on oeis.org

0, 1, 4, 28, 272, 3376, 51012, 908608, 18640960, 432891136, 11225320100, 321504185344, 10079828372880, 343360783937536, 12627774819845668, 498676704524517376, 21046391759976988928, 945381827279671853056, 45032132922921758270916, 2267322327322331161821184
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 10 2018

Keywords

Crossrefs

Programs

  • Mathematica
    Table[((n + 1)^n - (n - 1)^n)/2, {n, 0, 19}]
    nmax = 19; CoefficientList[Series[(x^2 - LambertW[-x]^2)/(2 x LambertW[-x] (1 + LambertW[-x])), {x, 0, nmax}], x] Range[0, nmax]!
    Table[n! SeriesCoefficient[Exp[n x] Sinh[x], {x, 0, n}], {n, 0, 19}]

Formula

E.g.f.: (x^2 - LambertW(-x)^2)/(2*x*LambertW(-x)*(1 + LambertW(-x))).
a(n) = n! * [x^n] exp(n*x)*sinh(x).

A292966 a(n) = (2*n)! * [x^(2*n)] exp(n*(cosh(x)-1)).

Original entry on oeis.org

1, 1, 14, 543, 41332, 5203880, 979067634, 257327195587, 90055440034760, 40484356990454979, 22735298894247204310, 15597865046044378254146, 12836943134715746781979644, 12482280872844033169540407253, 14157380505669130674125989779482, 18524549200247005824873100782063015
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 29 2017

Keywords

Crossrefs

Programs

  • Mathematica
    Table[(2 n)! SeriesCoefficient[Exp[n (Cosh[x] - 1)], {x, 0, 2 n}], {n, 0, 15}]
    Table[(-1)^n (2 n)! SeriesCoefficient[Exp[n (Cos[x] - 1)], {x, 0, 2 n}], {n, 0, 15}]
Showing 1-2 of 2 results.