login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A215906
Even numbers n such that the Lucas number L(n) is the sum of two squares.
3
0, 6, 30, 78, 150, 390, 606, 750, 1434
OFFSET
1,2
COMMENTS
These Lucas numbers L(n) have no prime factor congruent to 3 mod 4 to an odd power.
1758, 1950, 3030 are terms. - Chai Wah Wu, Jul 23 2020
MATHEMATICA
Select[Range[0, 200, 2], Length[FindInstance[x^2 + 1*y^2 == LucasL[#], {x, y}, Integers]] > 0 &] (* G. C. Greubel, Apr 14 2017 *)
PROG
(PARI) for(i=2, 500, a=factorint(fibonacci(i-1)+fibonacci(i+1))~; has=0; for(j=1, #a, if(a[1, j]%4==3&&a[2, j]%2==1, has=1; break)); if(has==0&&i%2==0, print(i", ")))
CROSSREFS
KEYWORD
nonn,more
AUTHOR
V. Raman, Aug 26 2012
EXTENSIONS
0 added by T. D. Noe, Aug 27 2012
a(6)-a(8) from V. Raman, Aug 28 2012
a(9) from Chai Wah Wu, Jul 23 2020
STATUS
approved