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.

A246439 Numbers m such that A164349(m) = 1.

Original entry on oeis.org

1, 4, 6, 10, 13, 15, 18, 21, 23, 27, 30, 32, 34, 37, 39, 43, 46, 48, 51, 54, 56, 60, 63, 66, 69, 71, 75, 78, 80, 83, 86, 88, 92, 95, 97, 99, 102, 104, 108, 111, 113, 116, 119, 121, 125, 128, 130, 133, 135, 139, 142, 144, 147, 150, 152, 156, 159, 161, 163
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 28 2014

Keywords

Comments

A164349(a(n)) = 1.

Crossrefs

Cf. A246438 (complement), A101403 (first differences), A164349.

Programs

  • Haskell
    a246439 n = a246439_list !! (n-1)
    a246439_list = filter ((== 1) . a164349) [0..]