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.

A249045 Self-numbers (A003052) that are multiples of 3.

Original entry on oeis.org

3, 9, 42, 75, 108, 132, 165, 198, 222, 255, 288, 312, 345, 378, 411, 435, 468, 501, 525, 558, 591, 615, 648, 681, 714, 738, 771, 804, 828, 861, 894, 918, 951, 984, 1032, 1065, 1098, 1122, 1155, 1188, 1212, 1245, 1278, 1311, 1335, 1368, 1401, 1425, 1458, 1491
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
    a249045 n = a249045_list !! (n-1)
    a249045_list = filter ((== 0) . flip mod 3) a003052_list
    -- Reinhard Zumkeller, Oct 31 2014