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.

A249044 Composite self-numbers.

Original entry on oeis.org

9, 20, 42, 64, 75, 86, 108, 110, 121, 132, 143, 154, 165, 176, 187, 198, 209, 222, 244, 255, 266, 288, 299, 310, 312, 323, 334, 345, 356, 378, 400, 411, 413, 424, 435, 446, 468, 490, 501, 512, 514, 525, 536, 558, 580, 591, 602, 615, 626, 637, 648, 670, 681, 692, 703, 714, 716, 738, 749, 760, 771, 782
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
    a249044 n = a249044_list !! (n-1)
    a249044_list = filter ((== 0) . a010051') $ tail a003052_list
    -- Reinhard Zumkeller, Oct 31 2014