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-1 of 1 results.

A270313 Denominator of Fibonacci(n)/n.

Original entry on oeis.org

1, 2, 3, 4, 1, 3, 7, 8, 9, 2, 11, 1, 13, 14, 3, 16, 17, 9, 19, 4, 21, 22, 23, 1, 1, 26, 27, 28, 29, 3, 31, 32, 33, 34, 7, 1, 37, 38, 39, 8, 41, 21, 43, 44, 9, 46, 47, 1, 49, 2, 51, 52, 53, 27, 11, 8, 57, 58, 59, 1, 61, 62, 63, 64, 13, 33, 67, 68, 69, 14, 71, 1, 73, 74, 3
Offset: 1

Views

Author

Keywords

Comments

a(n) = 1 for n in A023172; a(n) = n for n in A074215. - Robert Israel, Mar 16 2016

Crossrefs

Cf. A000045, A023172, A074215, A104714, A127787, A270312 (numerators).

Programs

  • Maple
    seq(n/igcd(n,combinat:-fibonacci(n)), n=1..100); # Robert Israel, Mar 16 2016
  • Mathematica
    Table[Fibonacci[n]/n, {n, 1, 100}] // Denominator
  • PARI
    a(n) = denominator(fibonacci(n)/n); \\ Michel Marcus, Mar 16 2016

Formula

a(n) = n/A104714(n). - Robert Israel, Mar 16 2016
Showing 1-1 of 1 results.