This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A215906 #33 Feb 16 2025 08:33:18 %S A215906 0,6,30,78,150,390,606,750,1434 %N A215906 Even numbers n such that the Lucas number L(n) is the sum of two squares. %C A215906 These Lucas numbers L(n) have no prime factor congruent to 3 mod 4 to an odd power. %C A215906 1758, 1950, 3030 are terms. - _Chai Wah Wu_, Jul 23 2020 %H A215906 Blair Kelly, <a href="http://mersennus.net/fibonacci">Fibonacci and Lucas factorizations</a> %H A215906 Eric W. Weisstein, <a href="https://mathworld.wolfram.com/SumofSquaresFunction.html">Sum of squares function</a> %t A215906 Select[Range[0, 200, 2], Length[FindInstance[x^2 + 1*y^2 == LucasL[#], {x, y}, Integers]] > 0 &] (* _G. C. Greubel_, Apr 14 2017 *) %o A215906 (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", "))) %Y A215906 Cf. A000032, A124130, A215809, A215907. %K A215906 nonn,more %O A215906 1,2 %A A215906 _V. Raman_, Aug 26 2012 %E A215906 0 added by _T. D. Noe_, Aug 27 2012 %E A215906 a(6)-a(8) from _V. Raman_, Aug 28 2012 %E A215906 a(9) from _Chai Wah Wu_, Jul 23 2020