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

A245447
Permutation of natural numbers: a(n) = A048673(A048673(n)).
6
1, 2, 3, 4, 5, 14, 8, 17, 9, 7, 6, 15, 13, 10, 38, 22, 11, 35, 23, 122, 50, 32, 18, 86, 25, 26, 138, 74, 41, 30, 12, 101, 33, 16, 43, 64, 28, 39, 24, 81, 20, 45, 68, 31, 176, 59, 63, 171, 34, 62, 203, 72, 53, 239, 44, 76, 47, 27, 19, 125, 29, 149, 218, 277, 158, 182, 113, 71, 40
OFFSET
1,2
FORMULA
a(n) = A048673(A048673(n)).
a(n) = (1/2) * (1 + A003961((1/2) * (1+A003961(n)))). [Where A003961(n) shifts the prime factorization of n one step left.]
a(n) = ((A003961(A243501(n)/2)) + 1) / 2 = ((A003961(A243501(n))/3) + 1) / 2.
For all n >= 1, A243501(n) = A243502(a(n)).
MATHEMATICA
b[p_?PrimeQ] := b[p] = Prime[PrimePi[p] + 1]; b[1] = 1; b[n_] := b[n] = Times @@ (b[First[#]]^Last[#]&) /@ FactorInteger[n];
A048673[n_] := (b[n] + 1)/2;
a[n_] := A048673[A048673[n]];
Table[a[n], {n, 1, 100}] (* Jean-François Alcover, May 16 2017 *)
PROG
(Scheme) (define (A245447 n) (A048673 (A048673 n)))
CROSSREFS
Inverse: A245448.
Fixed points: A245449.
Sequence in context: A138986 A306294 A098552 * A361947 A037340 A199165
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 22 2014
STATUS
approved