OFFSET
0,1
COMMENTS
The definition is similar to the definition of the Collatz (or 3x+1) sequence except that instead of 3x+1 it uses 3x-1. - Harvey P. Dale, Jan 20 2026
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, E16.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1).
MATHEMATICA
NestList[If[EvenQ[#], #/2, 3#-1]&, 99, 50] (* Harvey P. Dale, Jan 20 2026 *)
PROG
(PARI) a(n)=if(n>2, 8900968659103151411668874298641981524835525\273^(n%18)%273, [99, 296, 148][n+1]) \\ Charles R Greathouse IV, May 31 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
