OFFSET
0,1
COMMENTS
Initial values of the form 64m + r, if r = {3,11,19,27,35,43,51,55}, provide first-sink-lengths {7,9,7,9,7,9,7,9} respectively; e.g., {64k + 19, 192k + 58, 96k + 29, 288k + 88, 144k + 44, 72k + 22, 36k + 11} submerge first below initial value at the 7th term, 36k + 11 < 64k + 19.
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 0..10000
FORMULA
a(n) = A074473(64n+39).
EXAMPLE
n=0: 64n + 39 = 39, Collatz trajectory = {39, 118, 59, 178, 89, 268, 134, 67, 202, 101, 304, 152, 76, 38, 19, 58, ....}, i.e., the 14th term = 38 is the first that is less than 39, the initial value, so a(0)=14.
MAPLE
col := proc(n) if(n mod 2 = 0)then return n/2: fi: return 3*n+1: end: A075480 := proc(n) local s, v: s:=1: v:=64*n+39: while v>=64*n+39 do v:=col(v): s:=s+1: od: return s: end: seq(A075480(n), n=0..65); # Nathaniel Johnston, Jun 22 2011
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Labos Elemer, Sep 23 2002
EXTENSIONS
Keyword:fini removed by Nathaniel Johnston, Jun 23 2011
Edited by Jon E. Schoenfield, Feb 23 2019
STATUS
approved