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.

A143812 Maximal number of halving and tripling steps to reach 1 in '3x+1' problem for range (1, ..., n).

Original entry on oeis.org

1, 2, 8, 8, 8, 9, 17, 17, 20, 20, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 24, 24, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, 113, 113, 113, 113, 113
Offset: 1

Views

Author

Benjamin Frost (benjamin.frost(AT)students.adelaide.edu.au), Sep 02 2008

Keywords

Crossrefs

Programs

  • Mathematica
    nst[n_]:=Length[NestWhileList[If[EvenQ[#],#/2,3#+1]&,n,#>1&]]; nn=60; With[ {stps= Array[nst,nn]},Table[Max[Take[stps,n]],{n,nn}]]  (* Harvey P. Dale, Apr 17 2014 *)

Extensions

Corrected and extended by Harvey P. Dale, Apr 17 2014