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

A356309
The least j >= n such that n and A276086(j) are relatively prime, where A276086 is the primorial base exp-function.
12
0, 1, 2, 6, 4, 5, 6, 7, 8, 12, 30, 11, 12, 13, 14, 30, 16, 17, 18, 19, 30, 24, 22, 23, 24, 30, 26, 30, 28, 29, 30, 31, 32, 36, 34, 210, 36, 37, 38, 42, 60, 41, 210, 43, 44, 60, 46, 47, 48, 210, 60, 54, 52, 53, 54, 60, 210, 60, 58, 59, 60, 61, 62, 210, 64, 65, 66, 67, 68, 72, 210, 71, 72, 73, 74, 90, 76, 2310, 78
OFFSET
0,3
FORMULA
a(n) = n + A356302(n).
MATHEMATICA
f[nn_] := Block[{m = 1, i = 1, n = nn, p}, While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; m]; Array[Block[{k = #}, While[! CoprimeQ[#, f[k]], k++]; k] &, 79, 0] (* Michael De Vlieger, Nov 06 2022, after Jean-François Alcover at A276086 *)
PROG
(PARI) A356309(n) = (n+A356302(n)); \\ See code in the latter sequence.
CROSSREFS
Cf. A324583 (positions of the fixed points), A356314 (positions of the terms that are primorial numbers), A356316 (where a(n) is a multiple of n), A356318 (where a nontrivial multiple), A356319 (where n < a(n) < 2*n).
Sequence in context: A334171 A175386 A021382 * A182505 A010465 A065630
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 04 2022
STATUS
approved