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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A104523 Numbers that are neither Fibonacci nor Lucas numbers. 1

%I #19 Mar 15 2020 05:58:48

%S 6,9,10,12,14,15,16,17,19,20,22,23,24,25,26,27,28,30,31,32,33,35,36,

%T 37,38,39,40,41,42,43,44,45,46,48,49,50,51,52,53,54,56,57,58,59,60,61,

%U 62,63,64,65,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86

%N Numbers that are neither Fibonacci nor Lucas numbers.

%H Harvey P. Dale, <a href="/A104523/b104523.txt">Table of n, a(n) for n = 1..10000</a>

%p lucas := proc(n::integer) if n = 0 then RETURN(2) ; elif n = 1 then RETURN(1) ; else RETURN(combinat[fibonacci](n-1)+combinat[fibonacci](n+1)) ; fi ; end : islucas := proc(i::integer) local lucn,n ; for n from 0 to i do lucn := lucas(n) ; if lucn = i then RETURN(1) ; elif lucn > i then RETURN(0) ; fi ; od : end : isfibo := proc(i::integer) local fibn,n ; for n from 0 to i+1 do fibn := combinat[fibonacci](n) ; if fibn = i then RETURN(1) ; elif fibn > i then RETURN(0) ; fi ; od : end : for n from 0 to 100 do if islucas(n) = 0 and isfibo(n) = 0 then printf("%d,",n) ; fi ; od : # _R. J. Mathar_, Apr 23 2006

%t a := {1, 3}; For[n = 3, n <= 100, n++,a=Append[a,a[[n-1]]+a[[n-2]]]]; Complement[Range[150], a, Table[Fibonacci[n], {n, 1, 100}]] (* _Stefan Steinerberger_, Apr 17 2006 *)

%t Module[{nn=12,fib,luc},fib=Fibonacci[Range[nn]];luc=LucasL[Range[nn]];Complement[ Range[fib[[-1]]],luc,fib]] (* _Harvey P. Dale_, Mar 10 2019 *)

%Y Cf. A000032, A000045.

%Y Intersection of A001690 and A090946.

%K nonn,easy

%O 1,1

%A Ido Romano (idoromano(AT)gmail.com), Apr 20 2005

%E More terms from _Stefan Steinerberger_ and Atilla Bora (borabanana(AT)gmail.com), Apr 17 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 17:07 EDT 2024. Contains 376002 sequences. (Running on oeis4.)