OFFSET
1,2
COMMENTS
Presumably this is the lexicographically earliest sequence of distinct positive numbers with the property that sums of two or three consecutive earlier terms are excluded. - N. J. A. Sloane, Jan 07 2021
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, E30.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Prime Number of Measurement.
PROG
(Haskell)
import Data.List ((\\))
a005242 n = a005242_list !! (n-1)
a005242_list = f [1..] 0 0 where
f (x:xs) y z = x : f (xs \\ [x + y, x + y + z]) x y
-- Reinhard Zumkeller, May 23 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Jud McCranie, Feb 15 1997
STATUS
approved