A330777 Numbers k such that k and Lucas(k) have the same number of divisors.
1, 2, 5, 7, 10, 11, 13, 14, 17, 19, 24, 26, 28, 31, 37, 38, 40, 41, 47, 53, 61, 62, 71, 79, 86, 88, 113, 152, 178, 202, 248, 313, 353, 458, 488, 503, 586, 613, 617, 856, 863, 914, 1082, 1097, 1306, 1318, 1361, 1784
Offset: 1
Links
- Blair Kelly, Fibonacci and Lucas Factorizations.
Programs
-
Mathematica
Select[Range[100],DivisorSigma[0,#]==DivisorSigma[0,LucasL[#]]&] (* Metin Sariyar, Jan 03 2020 *)
-
PARI
for(k=1,320,if(numdiv(k)==numdiv(fibonacci(k+1)+fibonacci(k-1)),print1(k,", "))) \\ Hugo Pfoertner, Jan 03 2020
Comments