OFFSET
1,2
COMMENTS
Permutation of A002024. - Reinhard Zumkeller, Jan 17 2014
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
After a(8) = 4 the next term is 5 as 3 has already occurred three times.
PROG
(Haskell)
a100795 n = a100795_list !! (n-1)
a100795_list = f 0 a002024_list where
f x ws = v : f v (us ++ vs) where (us, v:vs) = span (== x) ws
-- Reinhard Zumkeller, Jan 17 2014
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Dec 05 2004
EXTENSIONS
Corrected and extended by Ray Chandler, Dec 08 2004
STATUS
approved