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.

A253106 Semiprimes with smallest factor <= 3.

Original entry on oeis.org

4, 6, 9, 10, 14, 15, 21, 22, 26, 33, 34, 38, 39, 46, 51, 57, 58, 62, 69, 74, 82, 86, 87, 93, 94, 106, 111, 118, 122, 123, 129, 134, 141, 142, 146, 158, 159, 166, 177, 178, 183, 194, 201, 202, 206, 213, 214, 218, 219, 226, 237, 249, 254, 262, 267, 274, 278
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 26 2014

Keywords

Comments

A253046(a(n)) != a(n).

Crossrefs

Programs

  • Haskell
    a253106 n = a253106_list !! (n-1)
    a253106_list = filter f [1..] where
       f x = p <= 3 && a010051' (div x p) == 1  where p = a020639 x