A228871 Odd numbers producing 3 out-of-order odd numbers in the Collatz (3x+1) iteration.
3, 227, 14563, 932067, 59652323, 3817748707, 244335917283, 15637498706147, 1000799917193443, 64051194700380387, 4099276460824344803, 262353693492758067427, 16790636383536516315363, 1074600728546337044183267, 68774446626965570827729123
Offset: 1
Examples
The number 3 has the Collatz iteration {3, 10, 5, 16, 8, 4, 2, 1}, which has three out-of-order odd numbers {3, 5, 1}.
Links
- Index entries for linear recurrences with constant coefficients, signature (65,-64).
Crossrefs
Programs
-
Mathematica
Table[(2*(2^(6*n - 2) - 1)/3 - 1)/3, {n, 15}]
-
PARI
a(n)=4^(3*n-1)\3*2\3 \\ Charles R Greathouse IV, Mar 11 2017
Formula
a(n) = (64^n/2 - 5)/9. - Alois P. Heinz, Dec 08 2021
From Wolfdieter Lang, Jan 12 2022: (Start)
a(n) = (2*A198586(2*n-1) - 1)/3. See the Mathematica program.
G.f.: x*(3 + 32*x)/((1 - x)*(1 - 64*x)). (End)
Comments