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

A190127
Inverse permutation to A190126.
2
1, 2, 5906, 3, 3859, 5907, 7954, 4, 2051, 3860, 4883, 5908, 6931, 7955, 8978, 5, 1028, 2052, 3075, 3861, 4372, 4884, 5395, 5909, 6420, 6932, 7443, 7956, 8467, 8979, 9490, 6, 517, 1029, 1540, 2053, 2564, 3076, 3587, 3862, 4117, 4373, 4628, 4885, 5140, 5396
OFFSET
1,2
COMMENTS
a(A190126(n)) = A190126(a(n)) = n.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000 (full sequence)
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a190127 n = a190127_list !! (n-1)
a190127_list =
map (succ . fromJust . (`elemIndex` a190126_list)) [1..10000]
CROSSREFS
Sequence in context: A064029 A057645 A129060 * A374194 A099690 A196750
KEYWORD
nonn,base,fini,full
AUTHOR
Reinhard Zumkeller, May 06 2011
STATUS
approved