A234842 Primes that are reached by an ever increasing aliquot sequence.
463, 523, 983, 1153, 2851, 2969, 4339, 4507, 6121, 8263, 8893, 10093, 12451, 17911, 18427, 18913, 22807, 22811, 25033, 27961, 33223, 36781, 41849, 42643, 48571, 60091, 64237, 71503, 73303, 74131, 90217, 90481, 103813, 108263, 123601, 124447, 125863, 140443
Offset: 1
Keywords
Examples
The aliquot sequence that begins with 10712 is always increasing before reaching prime 12451: 10712->11128->11552->12451->1, hence 12451 is in the sequence. 20422951 also belongs here with the aliquot sequence that starts at 14952, so a 13-tuple abundant (see factordb link). People at the Aliquot Sequences project have found longer sequences that reach higher primes.
Links
- Michel Marcus, Table of n, a(n) for n = 1..100
- Factordb, Sequence starting with 14952
- Michel Marcus, Aliquot sequences leading to these primes
- Help needed for a sequence Thread on Aliquot Sequences Forum
Programs
-
PARI
prev(n) = {for (i=1, n, if ((sigma(i) - i) == n, return (i));); return (0);} lista(nn) = {forprime(p=2, nn, if (prev(p), print1(p, ", ");););} \\ simplified by Michel Marcus, Jan 11 2014
Comments