OFFSET
1,2
COMMENTS
An Ulam-type sequence - see A002858 for many further references, comments, etc.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Ulam Sequence
Wikipedia, Ulam number
EXAMPLE
13 is not a term, as 13 = 7+6 = a(3)+a(2) and 13 = 12+1 = a(8)+a(1);
14 is a term, because 14 = 8 + 6 = a(4) + a(2) is unique for distinct terms, a(9) = 14.
PROG
(Haskell)
a199162 n = a199162_list !! (n-1)
a199162_list = 1 : 6 : ulam 2 6 a199162_list
-- Function ulam as defined in A002858.
-- Reinhard Zumkeller, Nov 03 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 03 2011
STATUS
approved