login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A377953
Numbers k such that k | A084190(k) and (k+1) | A084190(k+1).
5
310155, 2566025, 2853135, 5746455, 6515145, 7329608, 8459360, 11291091, 15446079, 16181535, 26782224, 26942475, 32364464, 34318844, 36951200, 38579442, 38596239, 38763900, 40564524, 41273154, 47308976, 47648600, 49309715, 50163735, 51177224, 52573520, 58524465, 63668079
OFFSET
1,1
COMMENTS
Numbers k such that k and k+1 are both terms in A377952.
LINKS
MATHEMATICA
q[n_] := q[n] = n == 1 || Divisible[LCM @@ (Rest @ Divisors[n] - 1), n] ; Select[Range[3*10^6], q[#] && q[# + 1] &]
PROG
(PARI) is1(k) = !(lcm(apply(x -> if(x > 1, x-1, x), 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. A084190.
Subsequence of A377952.
Similar sequences: A355332, A377949, A377951.
Sequence in context: A226364 A359846 A206276 * A251304 A127491 A205204
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 12 2024
STATUS
approved