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.

A202387 Squarefree Smith numbers, cf. A006753.

Original entry on oeis.org

22, 58, 85, 94, 166, 202, 265, 274, 319, 346, 355, 382, 391, 438, 454, 483, 517, 526, 535, 562, 627, 634, 645, 654, 663, 690, 706, 762, 778, 861, 895, 913, 915, 922, 958, 985, 1086, 1111, 1165, 1219, 1255, 1282, 1507, 1581, 1626, 1633, 1642, 1678, 1795, 1822
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 19 2011

Keywords

Comments

Intersection of A006753 and A005117;
also squarefree hoax numbers: intersection of A019506 and A005117;
squarefree composite numbers m such that sum of digits of m = sum of digits of all prime factors of m.

Crossrefs

Programs

  • Haskell
    a202387 n = a202387_list !! (n-1)
    a202387_list = [x | x <- a120944_list,
                        a007953 x == sum (map a007953 (a027746_row x))]