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.

A153803 a(n) = A153800(n) - A000043(n).

Original entry on oeis.org

0, 0, 0, 0, 0, 2, 6, 10, 49, 103, 122, 167
Offset: 1

Views

Author

Omar E. Pol, Jan 13 2009

Keywords

Crossrefs

Programs

  • Mathematica
    a007691[m_] := Block[{f = 0, i = 1}, While[f < m, If[Divisible[DivisorSigma[1, i], i], ++f]; ++i;]; Return[i - 1]]
    a153800[n_] := Block[{i = 2, j, f = 0}, While[f < n, j = a007691[i]; If[PerfectNumberQ[j], ++f;]; ++i]; Return[i - 1]]
    a[n_] := a153800[n] - MersennePrimeExponent[n]
    a /@ Range[1, 4] (* Julien Kluge, Dec 15 2016 *)