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.

A249047 Self-numbers (A003052) that are not divisible by 3.

Original entry on oeis.org

1, 5, 7, 20, 31, 53, 64, 86, 97, 110, 121, 143, 154, 176, 187, 209, 211, 233, 244, 266, 277, 299, 310, 323, 334, 356, 367, 389, 400, 413, 424, 446, 457, 479, 490, 512, 514, 536, 547, 569, 580, 602, 613, 626, 637, 659, 670, 692, 703, 716
Offset: 1

Views

Author

N. J. A. Sloane, Oct 30 2014

Keywords

References

  • D. R. Kaprekar, The Mathematics of the New Self Numbers, Privately printed, 311 Devlali Camp, Devlali, India, 1963.

Crossrefs

Programs

  • Haskell
    a249047 n = a249047_list !! (n-1)
    a249047_list = filter ((> 0) . flip mod 3) a003052_list
    -- Reinhard Zumkeller, Oct 31 2014