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.

A036992 Numbers not in A036990 nor A036991.

Original entry on oeis.org

6, 9, 14, 17, 22, 25, 26, 28, 30, 33, 35, 37, 38, 41, 46, 49, 54, 57, 58, 60, 62, 65, 67, 69, 70, 73, 78, 81, 86, 89, 90, 92, 94, 97, 99, 101, 102, 105, 106, 108, 110, 113, 114, 116, 118, 120, 121, 122, 124, 126, 129, 131, 133, 134, 135, 137, 139, 141, 142, 145, 147
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Haskell
    a036992 n = a036992_list !! (n-1)
    a036992_list = c a036990_list (tail a036991_list) [0..] where
       c us'@(u:us) vs'@(v:vs) (w:ws)
         | w == u    = c us vs' ws
         | w == v    = c us' vs ws
         | otherwise = w : c us' vs' ws
    -- Reinhard Zumkeller, Jul 31 2013

Formula

a(n) ~ n. [Charles R Greathouse IV, Sep 21 2011]

Extensions

More terms from Erich Friedman.