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.

Showing 1-2 of 2 results.

A154908 Highly composite Fibonacci numbers.

Original entry on oeis.org

1, 2, 8, 144, 2584, 46368, 14930352, 4807526976, 1548008755920, 498454011879264, 160500643816367088, 2880067194370816120, 51680708854858323072, 16641027750620563662096, 5358359254990966640871840
Offset: 1

Views

Author

Omar E. Pol, Jan 18 2009, Jan 20 2009

Keywords

Comments

Positive Fibonacci numbers with record values for the number of divisors.

Examples

			144 is in the sequence because it is a Fibonacci number with 15 divisors and all smaller Fibonacci numbers have fewer divisors. - _Emeric Deutsch_, Jan 20 2009
		

Crossrefs

Programs

  • Maple
    with(numtheory): with(combinat): a := proc (n) if n = 1 then 1 else if max(seq(tau(fibonacci(j)), j = 1 .. n-1)) < tau(fibonacci(n)) then fibonacci(n) else end if end if end proc: seq(a(n), n = 1 .. 170); # Emeric Deutsch, Jan 20 2009
  • Mathematica
    DeleteDuplicates[{#,DivisorSigma[0,#]}&/@Fibonacci[Range[200]],GreaterEqual[#1[[2]],#2[[2]]]&][[;;,1]] (* Harvey P. Dale, Aug 10 2025 *)

Extensions

Extended by Emeric Deutsch, Jan 20 2009

A154907 Where records occur in (A063375: Number of divisors of Fibonacci(n)).

Original entry on oeis.org

1, 3, 6, 12, 18, 24, 36, 48, 60, 72, 84, 90, 96, 108, 120, 168, 180, 240, 300, 336, 360, 420, 480, 504, 600, 720, 792, 840, 1050, 1080, 1200, 1260, 1320
Offset: 1

Views

Author

Omar E. Pol, Jan 18 2009

Keywords

Crossrefs

Extensions

Edited by Omar E. Pol, Jan 20 2009
a(19)-a(28) (using b-file at A063375) from Jon E. Schoenfield, Jun 23 2017
a(29)-a(33) from Amiram Eldar, Oct 14 2019
Showing 1-2 of 2 results.