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.

A051950 Differences between values of tau(n) (A000005): a(n) = tau(n)-tau(n-1).

Original entry on oeis.org

1, 0, 1, -1, 2, -2, 2, -1, 1, -2, 4, -4, 2, 0, 1, -3, 4, -4, 4, -2, 0, -2, 6, -5, 1, 0, 2, -4, 6, -6, 4, -2, 0, 0, 5, -7, 2, 0, 4, -6, 6, -6, 4, 0, -2, -2, 8, -7, 3, -2, 2, -4, 6, -4, 4, -4, 0, -2, 10, -10, 2, 2, 1, -3, 4, -6, 4, -2, 4, -6, 10, -10, 2, 2, 0, -2, 4, -6, 8, -5, -1, -2, 10, -8, 0, 0, 4, -6, 10
Offset: 2

Views

Author

Asher Auel, Dec 16 1999

Keywords

Crossrefs

Programs

  • Haskell
    a051950 n = a051950_list !! n
    a051950_list = 1 : zipWith (-) (tail a000005_list) a000005_list
    -- Reinhard Zumkeller, Feb 04 2013
  • Mathematica
    Differences[DivisorSigma[0, Range[100]]] (* Alonso del Arte, Oct 14 2013, based on T. D. Noe's program for A182394 *)

Formula

G.f.: (1-x)*sum(k >= 1, x^k/(1-x^k)). - Benoit Cloitre, Apr 24 2003

Extensions

Edited (and offset corrected) by N. J. A. Sloane, Oct 05 2017