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.

A251537 Odd numbers n such that A098548(n+2) > A098548(n) + 6.

Original entry on oeis.org

5, 13, 21, 29, 37, 45, 53, 61, 67, 75, 83, 91, 99, 107, 115, 123, 131, 139, 147, 153, 161, 169, 177, 185, 193, 201, 209, 217, 225, 233, 239, 247, 255, 263, 271, 279, 287, 295, 303, 311, 319, 325, 333, 341, 349, 357, 365, 373
Offset: 1

Views

Author

N. J. A. Sloane, Dec 07 2014

Keywords

Crossrefs

Programs

  • Haskell
    a251537 n = a251537_list !! (n-1)
    a251537_list = filter (\x -> a098548 (x + 2) > a098548 x + 6) [1, 3 ..]
    -- Reinhard Zumkeller, Dec 08 2014