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!)
A050122 Numbers of the form Fibonacci(i)*Lucas(j), i <= j. 2

%I #10 Jun 22 2021 03:53:24

%S 0,1,3,4,7,8,11,14,18,21,22,29,33,36,47,54,55,58,76,87,90,94,123,141,

%T 144,145,152,199,228,232,235,246,322,369,376,377,380,398,521,597,608,

%U 611,615,644,843,966,984,987,988,995,1042,1364

%N Numbers of the form Fibonacci(i)*Lucas(j), i <= j.

%H R. J. Mathar, <a href="/A050122/b050122.txt">Table of n, a(n) for n = 1..171</a>

%p isA050122 := proc(n)

%p local i,j,f,l ;

%p if n =0 then

%p true;

%p else

%p for i from 1 do

%p f := A000045(i) ;

%p if f > n then

%p return false;

%p else

%p for j from i do

%p l := A000032(j) ;

%p if f*l = n then

%p return true;

%p elif f*l > n and j> 2 then

%p break;

%p end if;

%p end do:

%p end if;

%p end do:

%p end if;

%p end proc:

%p A050122 := proc(n)

%p option remember;

%p local a;

%p if n = 1 then

%p 0;

%p else

%p for a from procname(n-1)+1 do

%p if isA050122(a) then

%p return a;

%p end if;

%p end do:

%p end if;

%p end proc:

%p seq(A050122(n),n=1..80) ; # _R. J. Mathar_, Jan 04 2017

%Y Cf. A000032, A000045.

%K nonn

%O 1,3

%A _Clark Kimberling_

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 April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)