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.

A095775 n/2 when 2*A003160(n) = n.

Original entry on oeis.org

1, 2, 4, 5, 6, 8, 9, 10, 12, 16, 17, 18, 20, 21, 22, 24, 25, 26, 30, 32, 33, 34, 36, 37, 38, 40, 41, 42, 44, 48, 49, 50, 52, 60, 64, 65, 66, 68, 69, 70, 72, 73, 74, 76, 80, 81, 82, 84, 85, 86, 88, 89, 90, 94, 96, 97, 98, 100, 101, 102, 104, 105, 106, 110, 118, 120, 121, 122
Offset: 1

Views

Author

Benoit Cloitre, Jun 05 2004

Keywords

Crossrefs

Cf. A095774.

Programs

  • Haskell
    a095775 n = a095775_list !! (n-1)
    a095775_list = map (`div` 2) $ filter ((== 0) . a095774) [1..]
    -- Reinhard Zumkeller, Aug 02 2013