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.

A080946 Numbers having exactly three divisors that are also suffixes in binary representation.

Original entry on oeis.org

15, 27, 30, 39, 45, 51, 54, 60, 75, 78, 85, 87, 90, 99, 102, 108, 111, 119, 120, 123, 125, 135, 147, 150, 153, 156, 159, 165, 170, 171, 174, 175, 180, 183, 187, 195, 198, 204, 205, 207, 216, 219, 221, 222, 238, 240, 243, 245, 246, 250, 267, 270, 279, 285, 287
Offset: 1

Views

Author

Reinhard Zumkeller, Feb 25 2003

Keywords

Comments

A080942(a(n))=3.

Crossrefs

Programs

  • Haskell
    a080946 n = a080946_list !! (n-1)
    a080946_list = filter ((== 3) . a080942) [1..]
    -- Reinhard Zumkeller, Mar 27 2014