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

A358231
Numbers k for which A276086(k) == 1 (mod k), where A276086 is the primorial base exp-function.
2
2, 4, 12, 16, 24, 47, 54, 72, 120, 142, 144, 432, 540, 864, 972, 1049, 1260, 1916, 2628, 10152, 12798, 19024, 20304, 100565, 152668, 209760, 445362, 2071560, 2759034, 3344269, 85167240, 92667148, 111135679, 118344316, 162716506, 264678868, 599478496
OFFSET
1,1
PROG
(PARI)
A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
isA358231(n) = (1==(A276086(n)%n));
CROSSREFS
Positions of 1's in A328386.
Sequence in context: A224703 A171943 A225748 * A114064 A071118 A132314
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 24 2022
STATUS
approved