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.

A031296 Position of n-th 9 in A007376.

Original entry on oeis.org

9, 29, 49, 69, 89, 109, 129, 149, 169, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 189, 219, 249, 279, 309, 339, 369, 399, 429, 459, 461, 464, 467, 470, 473, 476, 479, 482, 485, 488, 489, 519, 549, 579, 609, 639, 669, 699
Offset: 1

Views

Author

Keywords

Comments

A007376(a(n)) = 9.

Crossrefs

Programs

  • Haskell
    import Data.List (elemIndices)
    a031296 n = a031296_list !! (n-1)
    a031296_list = map (+ 1) $ elemIndices 9 a007376_list
    -- Reinhard Zumkeller, Jul 28 2011