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.

A302190 Hurwitz logarithm of natural numbers 1,2,3,4,5,...

Original entry on oeis.org

0, 2, -1, 2, -6, 24, -120, 720, -5040, 40320, -362880, 3628800, -39916800, 479001600, -6227020800, 87178291200, -1307674368000, 20922789888000, -355687428096000, 6402373705728000, -121645100408832000, 2432902008176640000, -51090942171709440000
Offset: 0

Views

Author

N. J. A. Sloane and William F. Keigher, Apr 12 2018

Keywords

Comments

In the ring of Hurwitz sequences all members have offset 0.

Crossrefs

Cf. A133942.

Programs

  • Maple
    # first load Maple commands for Hurwitz operations from link
    s:=[seq(n,n=1..64)];
    Hlog(s);
  • Sage
    A = PowerSeriesRing(QQ, 'x')
    f = A(list(range(1,30))).ogf_to_egf().log()
    print(list(f.egf_to_ogf()))
    # F. Chapoton, Apr 11 2020

Formula

E.g.f. is log of Sum_{n >= 0} (n+1)*x^n/n!.