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.

A094328 Iterate the map in A006369 starting at 4.

Original entry on oeis.org

4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6, 4, 5, 7, 9, 6
Offset: 1

Views

Author

N. J. A. Sloane, Jun 04 2004

Keywords

References

  • J. C. Lagarias, ed., The Ultimate Challenge: The 3x+1 Problem, Amer. Math. Soc., 2010; see page 270.

Crossrefs

Programs

  • Haskell
    a094328 n = a094328_list !! (n-1)
    a094328_list = iterate a006369 4  -- Reinhard Zumkeller, Dec 31 2011
    
  • Mathematica
    Table[{4, 5, 7, 9, 6}, {21}] // Flatten  (* Jean-François Alcover, Jun 10 2013 *)
    LinearRecurrence[{0, 0, 0, 0, 1},{4, 5, 7, 9, 6},105] (* Ray Chandler, Sep 03 2015 *)
  • PARI
    a(n)=([0,1,0,0,0; 0,0,1,0,0; 0,0,0,1,0; 0,0,0,0,1; 1,0,0,0,0]^(n-1)*[4;5;7;9;6])[1,1] \\ Charles R Greathouse IV, Oct 18 2022

Formula

The map is: n -> if n mod 3 = 0 then 2*n/3 elif n mod 3 = 1 then (4*n-1)/3 else (4*n+1)/3.
Periodic with period length 5.