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.

A251536 A098548(2n)/2.

Original entry on oeis.org

1, 2, 5, 11, 14, 17, 20, 26, 29, 32, 35, 41, 44, 47, 50, 56, 59, 62, 65, 71, 74, 77, 80, 86, 89, 92, 95, 101, 104, 107, 110, 119, 122, 125, 131, 134, 137, 140, 146, 149, 152, 155, 161, 164, 167, 170, 176, 179, 182, 185, 191
Offset: 1

Views

Author

N. J. A. Sloane, Dec 07 2014

Keywords

Comments

Equals (A251535(n)+1)/2.

Crossrefs

Programs

  • Haskell
    a251536 n = a251536_list !! (n-1)
    a251536_list = map (flip div 2) $ snd a098548_bisect
    -- where a098548_bisect is defined in a251535.
    -- Reinhard Zumkeller, Dec 08 2014