The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A277605 Numbers not in a Fibonacci sequence starting with two 1-digit numbers. 3
106, 114, 119, 122, 127, 130, 132, 135, 140, 143, 145, 148, 151, 153, 156, 158, 161, 164, 166, 169, 171, 172, 174, 177, 179, 182, 184, 185, 187, 190, 192, 193, 195, 197, 198, 200, 203, 205, 206, 208, 210, 211, 213, 214, 216, 218, 219, 221, 224, 226 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = n + O(log n). - Charles R Greathouse IV, Oct 30 2016
EXAMPLE
106 is in this sequence because it is not in any Fibonacci sequence starting with two 1-digit numbers.
MATHEMATICA
With[{nn = 226}, Complement[Range@ nn, TakeWhile[Union@ Flatten@ Map[LinearRecurrence[{1, 1}, #, 1 + Floor[1/2 + Log[GoldenRatio, Sqrt[5] nn]]] &, Tuples[Range@ 9, 2]], # <= nn &]]] (* Michael De Vlieger, Aug 19 2017 *)
PROG
(PARI) is(n)=if(n<106, return(0)); for(a=1, 9, for(b=1, 9, my(x=a, y=a+b); while(y<n, [x, y]=[y, x+y]); if(y==n, return(0)))); 1 \\ Charles R Greathouse IV, Oct 30 2016
CROSSREFS
Sequence in context: A181739 A178314 A010339 * A102804 A192994 A235691
KEYWORD
base,nonn
AUTHOR
Bobby Jacobs, Oct 23 2016
EXTENSIONS
More terms from Bobby Jacobs, Oct 29 2016
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 14 10:41 EDT 2024. Contains 372532 sequences. (Running on oeis4.)