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.

A174883 Largest odd divisors of Fibonacci numbers.

Original entry on oeis.org

1, 1, 1, 3, 5, 1, 13, 21, 17, 55, 89, 9, 233, 377, 305, 987, 1597, 323, 4181, 6765, 5473, 17711, 28657, 1449, 75025, 121393, 98209, 317811, 514229, 104005, 1346269, 2178309, 1762289, 5702887, 9227465, 933147, 24157817, 39088169, 31622993
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    f[n_]:=Module[{x=n},While[EvenQ[x],x/=2];x]; Table[f[Fibonacci[n]],{n,1,5!}]
    lod[n_]:=Module[{fib=Fibonacci[n]},fib/2^IntegerExponent[fib,2]]; Array[lod,40] (* Harvey P. Dale, Dec 14 2011 *)
    Table[Select[Divisors[Fibonacci[n]],OddQ][[-1]],{n,40}] (* Harvey P. Dale, Mar 07 2023 *)

Formula

a(n) = F(n) / A060865(n). - Franklin T. Adams-Watters, Jan 24 2012