OFFSET
1,1
COMMENTS
This sequence gives all start numbers a(n) (sorted increasingly) of Collatz sequences of length 7 following the pattern ud^5 with u (for `up'), mapping an odd number m to 3*m+1, and d (for `down'), mapping an even number m to m/2, requiring that the sequence ends in an odd number. The last entry of this Collatz sequence is 6*n - 1.
This appears in Example 2.1. for x = 5 in the M. Trümper paper given as a link below.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Wolfdieter Lang, On Collatz' Words, Sequences, and Trees, J. of Integer Sequences, Vol. 17 (2014), Article 14.11.7.
Manfred Trümper, The Collatz Problem in the Light of an Infinite Free Semigroup, Chinese Journal of Mathematics, Vol. 2014, Article ID 756917, 21 pages.
FORMULA
O.g.f.: x*(53+11*x)/(1-x)^2.
EXAMPLE
a(1) = 53 because the Collatz sequence of length 7 following the pattern uddddd, ending in an odd number is [53, 160, 80, 40, 20, 10, 5]. The end number is 6*1 - 1 = 5.
MATHEMATICA
CoefficientList[Series[(53 + 11 x)/(1 - x)^2, {x, 0, 50}], x] (* Vincenzo Librandi, Mar 13 2014 *)
64 Range[40]-11 (* Harvey P. Dale, Nov 21 2018 *)
PROG
(Magma) [64*n-11: n in [1..50]]; // Vincenzo Librandi, Mar 13 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Mar 10 2014
STATUS
approved