login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A057446 To get next term, multiply by 13, add 1 and discard any prime factors < 13. 14
73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101, 73, 19, 31, 101 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
This is the '13x+1' map. The 'Px+1 map': if x is divisible by any prime < P then divide out these primes one at a time starting with the smallest; otherwise multiply x by P and add 1.
Sequence has period 4. - Alois P. Heinz, Jan 19 2021
LINKS
Eric Weisstein's World of Mathematics, Collatz problem
EXAMPLE
73 -> 13*73+1 = 950 = 2*5^2*19 -> 19, so second term is 19.
MATHEMATICA
m13[n_]:=First[Times@@@Select[FactorInteger[13 n+1], #[[1]]>11&]]; NestList[ m13, 73, 80] (* or *) PadRight[{}, 80, {73, 19, 31, 101}] (* Harvey P. Dale, Apr 16 2019 *)
a[n_] := a[n] = Which[n == 0, 73, n <= 4, Times @@ Power @@@ Select[ FactorInteger[13 a[n - 1] + 1], #[[1]] >= 13&], True, a[n - 4]];
Table[a[n], {n, 0, 59}] (* Jean-François Alcover, Aug 21 2023 *)
CROSSREFS
Cf. A057216, A057522 (long version), A057534, A057614.
Sequence in context: A051325 A249276 A102050 * A033393 A153646 A179516
KEYWORD
nonn,easy
AUTHOR
Murad A. AlDamen (Divisibility(AT)yahoo.com), Oct 17 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 05:33 EDT 2024. Contains 371918 sequences. (Running on oeis4.)