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

A190129
Inverse permutation to A190128.
2
1, 6721, 2, 3282, 5628, 6722, 7815, 8908, 3, 1096, 2189, 3283, 4376, 5264, 5629, 5993, 6357, 6723, 7087, 7451, 7816, 8180, 8544, 8909, 9273, 9637, 4, 368, 732, 1097, 1461, 1825, 2190, 2554, 2918, 3284, 3648, 4012, 4377, 4741, 5105, 5265, 5386, 5507, 5630
OFFSET
1,2
COMMENTS
a(A190128(n)) = A190128(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)
a190129 n = a190129_list !! (n-1)
a190129_list =
map (succ . fromJust . (`elemIndex` a190128_list)) [1..10000]
CROSSREFS
Sequence in context: A224689 A190292 A164972 * A345581 A345838 A237041
KEYWORD
nonn,base,fini,full
AUTHOR
Reinhard Zumkeller, May 06 2011
STATUS
approved