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.

A261869 First differences of A055615.

Original entry on oeis.org

-3, -1, 3, -5, 11, -13, 7, 0, 10, -21, 11, -13, 27, 1, -15, -17, 17, -19, 19, 21, 1, -45, 23, 0, 26, -26, 0, -29, -1, -1, 31, 33, 1, 1, -35, -37, 75, 1, -39, -41, -1, -1, 43, 0, 46, -93, 47, 0, 0, 51, -51, -53, 53, 55, -55, 57, 1, -117, 59, -61, 123, -62, 0
Offset: 1

Views

Author

Reinhard Zumkeller, Sep 04 2015

Keywords

Comments

a(n) = (n+1)*mu(n+1) - n*mu(n), where mu = A008683 (Moebius function);
a(A068781(n)) = 0;
abs(a(n)) <= 2*n + 1.

Crossrefs

Cf. A008683, A055615, A068781, A261890 (first differences).

Programs

  • Haskell
    import Data.List (genericIndex)
    a261869 n = genericIndex a261869_list (n - 1)
    a261869_list = zipWith (-) (tail a055615_list) a055615_list
  • Mathematica
    #[[2]]-#[[1]]&/@Partition[Table[n*MoebiusMu[n],{n,70}],2,1] (* Harvey P. Dale, Apr 17 2016 *)