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

A302849
Permutation of natural numbers: a(1) = 1, a(2) = 2; for n > 2, a(n) = A064989(4+A003961(n-2)).
3
1, 2, 3, 5, 4, 11, 7, 17, 6, 29, 23, 9, 13, 25, 10, 31, 22, 39, 19, 73, 8, 61, 53, 41, 14, 137, 47, 21, 82, 101, 15, 107, 37, 187, 38, 59, 16, 227, 12, 71, 83, 191, 43, 121, 26, 49, 173, 55, 34, 401, 27, 149, 28, 151, 20, 373, 51, 205, 65, 89, 33, 161, 67, 57, 116, 727, 74, 197, 18, 45, 139, 129, 35, 445, 79, 113, 158, 199, 50, 155, 46, 569, 403, 85, 58
OFFSET
1,2
FORMULA
a(1) = 1, a(2) = 2; for n > 2, a(n) = A064989(4+A003961(n-2)).
PROG
(PARI)
A003961(n) = my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); \\ From A003961
A064989(n) = {my(f); f = factor(n); if((n>1 && f[1, 1]==2), f[1, 2] = 0); for (i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f)};
A302849(n) = if(n<=2, n, A064989(4+A003961(n-2)));
CROSSREFS
Cf. A302850 (inverse).
Sequence in context: A355065 A213900 A213648 * A193971 A258861 A171038
KEYWORD
nonn
AUTHOR
Antti Karttunen, Apr 26 2018
STATUS
approved