cp's OEIS Frontend

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.

A074316 Abundant Fibonacci numbers.

Original entry on oeis.org

144, 2584, 46368, 832040, 14930352, 102334155, 267914296, 4807526976, 86267571272, 1548008755920, 498454011879264, 23416728348467685, 160500643816367088, 2880067194370816120, 51680708854858323072
Offset: 1

Views

Author

Shyam Sunder Gupta, Sep 22 2002

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.
		

Crossrefs

Intersection of A000045 and A005101.

Programs

  • Mathematica
    Select[Fibonacci[Range[100]],DivisorSigma[1,#]>2#&] (* Harvey P. Dale, Jul 27 2011 *)