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.

A279172 The autosequence of the first kind between A226158(n) and A278331(n).

Original entry on oeis.org

0, 1, 1, -1, -3, 3, 17, -17, -155, 155, 2073, -2073, -38227, 38227, 929569, -929569, -28820619, 28820619, 1109652905, -1109652905, -51943281731, 51943281731, 2905151042481, -2905151042481, -191329672483963, 191329672483963, 14655626154768697, -14655626154768697
Offset: 0

Views

Author

Keywords

Comments

Peter Luschny introduced the extended Genocchi numbers A226158(n), an autosequence of the first kind. They are linked to the second Bernoulli numbers B+(n) = A164555(n)/A027642(n). Here + is an exponent.
This yields the possible Genocchi twin numbers: -1, -1 followed by a(n).

Crossrefs

Programs

  • Mathematica
    a[n_] := (n+2)*EulerE[n+1, 0] - (n+1)*EulerE[n, 0]; a[0] = 0; Table[a[n], {n, 0, 30}] (* or: *)
    Join[{0}, Array[#*EulerE[#-1, 0]&, 32] // Differences // Rest]

Formula

a(n) = A226158(n+2) - A226158(n+1).
a(n) = 2*(2^(n+1) -1)*B+(n+1) -2*(2^(n+2) -1)*B+(n+2).