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.

A220968 Positions in A030229 where odd terms occur.

Original entry on oeis.org

1, 5, 6, 9, 11, 13, 15, 16, 17, 20, 21, 23, 25, 27, 28, 29, 31, 33, 34, 36, 38, 39, 40, 42, 44, 45, 47, 49, 50, 52, 54, 55, 56, 58, 60, 61, 63, 65, 67, 68, 70, 71, 73, 74, 75, 76, 77, 79, 81, 82, 85, 86, 87, 89, 90, 92, 93, 94, 96, 97, 98, 100, 101, 104, 105
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 27 2012

Keywords

Comments

A030229(a(n)) mod 2 = 1; A020639(A030229(a(n))) > 2.

Crossrefs

Cf. A220969 (complement).

Programs

  • Haskell
    import Data.List (findIndices)
    a220968 n = a220968_list !! (n-1)
    a220968_list = map (+ 1) $ findIndices odd a030229_list