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.

A074724 Highest power of 3 dividing F(4n) where F(k) is the k-th Fibonacci number.

Original entry on oeis.org

3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3, 81, 3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3, 81, 3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3, 243, 3, 3, 9, 3, 3, 9, 3, 3, 27, 3, 3, 9, 3, 3, 9, 3, 3
Offset: 1

Views

Author

Benoit Cloitre, Sep 04 2002

Keywords

Comments

If m == 1, 2 or 3 (mod 4) then F(m) is not divisible by 3.

Crossrefs

Programs

  • Mathematica
    Table[3^IntegerExponent[Fibonacci[4n],3],{n,100}] (* Harvey P. Dale, Jun 03 2012 *)
  • PARI
    a(n) = 3^valuation(fibonacci(4*n), 3); \\ Michel Marcus, May 13 2022

Formula

If k == 1 or 2 (mod 3) then a(3^m*k) = 3^(m+1) for m>=0.
a(n) = A038500(A033888(n)). - Amiram Eldar, May 13 2022
a(n) = 3^A051064(n) (conjectured). - Michel Marcus, May 17 2022
Conjecture: a(n) = (sigma(3*n) - sigma(n))/(sigma(3*n) - 3*sigma(n)), where sigma(n) = A000203(n). Equivalently, a(n) = A088838(n) - A074724(n). - Peter Bala, Jun 10 2022