OFFSET
1,1
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..278 (terms 1..137 from Shyam Sunder Gupta)
EXAMPLE
a(1) = 20 is a term because 20 is an abundant number as the sum of the aliquot divisors of 20, i.e., 1 + 2 + 4 + 5 + 10 = 22, is more than 20, and 20th Fibonacci number; i.e., 6765 is a deficient number.
MATHEMATICA
A395014Q[k_] := DivisorSigma[1, k] > 2*k && (DivisorSigma[1, #] < 2*# & [Fibonacci[k]]);
Select[Range[500], A395014Q] (* Paolo Xausa, Apr 15 2026 *)
PROG
(PARI) isok(k) = if (sigma(k) > 2*k, my(f=fibonacci(k)); sigma(f) < 2*f); \\ Michel Marcus, Apr 10 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Apr 10 2026
STATUS
approved
