login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A377951
Numbers k such that k | A057643(k) and (k+1) | A057643(k+1).
5
1, 799799, 1204280, 2460975, 3382379, 6116175, 7050120, 8070699, 13339424, 20966049, 28460600, 41265680, 41463135, 52404624, 66108399, 68919080, 72946224, 81102944, 84479680, 102971924, 106663304, 110791736, 112375899, 115225439, 118333215, 131115984, 132073424
OFFSET
1,2
COMMENTS
Numbers k such that k and k+1 are both terms in A377950.
LINKS
MATHEMATICA
q[n_] := q[n] = Divisible[LCM @@ (Divisors[n] + 1), n]; Select[Range[4*10^6], q[#] && q[# + 1] &]
PROG
(PARI) is1(k) = !(lcm(apply(x->x+1, divisors(k))) % k);
lista(kmax) = {my(q1 = is1(1), q2); for(k = 2, kmax, q2 = is1(k); if(q1 && q2, print1(k-1, ", ")); q1 = q2); }
CROSSREFS
Cf. A057643.
Subsequence of A377950.
Similar sequences: A355332, A377949, A377953.
Sequence in context: A206135 A237543 A053086 * A106781 A112451 A235006
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 12 2024
STATUS
approved