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”).

A344308
Numbers k such that A205791(k) = k+1.
2
1, 2, 3, 5, 6, 7, 10, 13, 14, 15, 17, 19, 21, 23, 26, 29, 30, 34, 35, 37, 38, 39, 42, 43, 46, 47, 51, 53, 57, 58, 59, 65, 67, 69, 70, 73, 74, 78, 79, 83, 85, 86, 87, 89, 91, 94, 95, 97, 102, 103, 105, 106, 107, 109, 111, 113, 114, 115, 118, 119, 127, 129, 130, 133, 134, 137, 138, 139, 141, 145
OFFSET
1,2
LINKS
EXAMPLE
a(6) = 7 is a term because A205791(7) = 8.
MAPLE
N:= 200: # for terms <= N
V:= Vector(N):
count:= 0:
for k from 1 while count < N do
for j from 1 to k-1 while count < N do
Q:= select(t -> t <= N and V[t] = 0, numtheory:-divisors(k^5-j^5));
if Q <> {} then
newcount:= nops(Q);
count:= count + newcount;
V[convert(Q, list)]:= k;
fi
od od:
select(t -> V[t] = t+1, [$1..N]);
MATHEMATICA
Select[Range@200, (k=1; While[FreeQ[Mod[Table[k^5-j^5, {j, k-1}], #], 0], k++]; k)==#+1&] (* Giorgos Kalogeropoulos, May 14 2021 *)
CROSSREFS
Cf. A205791.
Subset of A005117.
Sequence in context: A101323 A298705 A030051 * A183071 A139826 A358374
KEYWORD
nonn
AUTHOR
Robert Israel, May 14 2021
STATUS
approved