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.

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).