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.

A226244 Successive record-setters (maxima) in Hofstadter's Q-sequence (A005185).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 16, 20, 21, 22, 23, 24, 32, 40, 42, 43, 44, 46, 47, 48, 64, 66, 68, 72, 78, 80, 82, 83, 85, 88, 90, 92, 94, 96, 128, 130, 138, 149, 151, 152, 159, 162, 165, 168, 169, 170
Offset: 1

Views

Author

Jeffrey Shallit, Jun 01 2013

Keywords

Comments

a(n) = A005185(A226245(n)).

Examples

			a(8) = 10 because the first few terms of Hofstadter's Q-sequence are 1,1,2,3,3,4,5,5,6,6,6,8,8,8,10,9 and 10 is the 8th record value.
		

Crossrefs

Programs

  • Haskell
    a226244 n = a226244_list !! (n-1)
    (a226244_list, a226245_list) = unzip $ (1,1) : f 1 1 a005185_list where
       f i v (q:qs) | q > v = (q,i) : f (i + 1) q qs
                    | otherwise = f (i + 1) v qs
    -- Reinhard Zumkeller, Jun 02 2013