login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A249031 The non-anti-Fibonacci numbers: numbers not in A075326. 6
1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 40, 41, 42, 44, 45, 46, 47, 48, 50, 51, 52, 54, 55, 56, 57, 59, 60, 61, 62, 64, 65, 66, 67, 68, 70, 71, 72, 74, 75, 76, 77, 79, 80, 81, 82, 84, 85, 86, 87, 88, 90, 91, 92, 94, 95, 96, 97, 99, 100 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
D. R. Hofstadter, Anti-Fibonacci numbers, Oct 23 2014
Thomas Zaslavsky, Anti-Fibonacci Numbers: A Formula, Sep 26 2016
PROG
(Haskell)
import Data.List ((\\))
a249031 n = a249031_list !! (n-1)
a249031_list = f [1..] where
f ws@(u:v:_) = u : v : f (ws \\ [u, v, u + v])
-- Reinhard Zumkeller, Oct 26 2014
CROSSREFS
Sequence in context: A001963 A287183 A039140 * A085302 A193928 A146215
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 26 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 10 17:06 EDT 2024. Contains 372388 sequences. (Running on oeis4.)