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.

A249684 Numbers that take a record number of steps before they appear in A084937.

Original entry on oeis.org

1, 2, 3, 5, 11, 14, 26, 29, 32, 56, 59, 62, 95, 98, 101, 137, 140, 143, 146, 152, 200, 203, 206, 209, 215, 221, 224, 281, 287, 290, 293, 296, 299, 302, 305, 365, 371, 374, 377, 380, 383, 386, 392, 398, 401, 485, 488, 491, 497, 500, 503, 506, 509, 512, 518, 521, 533, 614, 620, 623, 626, 629, 632, 635
Offset: 1

Views

Author

N. J. A. Sloane, Nov 05 2014

Keywords

Comments

Records in A084933.
A249777(a(n)) = 0. - Reinhard Zumkeller, Nov 05 2014

Crossrefs

Programs

  • Haskell
    a249684 n = a249684_list !! (n-1)
    a249684_list = filter ((== 0) . a249777) [1..]
    -- Reinhard Zumkeller, Nov 05 2014