A074316 Abundant Fibonacci numbers.
144, 2584, 46368, 832040, 14930352, 102334155, 267914296, 4807526976, 86267571272, 1548008755920, 498454011879264, 23416728348467685, 160500643816367088, 2880067194370816120, 51680708854858323072
Offset: 1
Keywords
Examples
a(1)=144 because the sum of the aliquot divisors of 144 (which is a Fibonacci number) is 1+2+3+4+6+8+9+12+16+18+24+36+48+72=259, which is more than 144, hence 144 is abundant. 144 is the first abundant Fibonacci number.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..150
Programs
-
Mathematica
Select[Fibonacci[Range[100]],DivisorSigma[1,#]>2#&] (* Harvey P. Dale, Jul 27 2011 *)