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

A197877
Smallest number m such that A096535(m) = n.
2
2, 0, 5, 6, 465, 7, 16, 208, 37, 17, 11, 58, 40, 35, 84, 18, 45, 29, 395, 30, 68, 59, 41, 62, 32, 191, 325, 109, 369, 33, 89, 72, 36, 85, 42, 47, 64, 51, 101, 88, 77, 49, 125, 394, 1124, 249, 76, 50, 54, 65, 119, 74, 2193, 61, 483, 133, 80, 186, 95, 990, 468
OFFSET
0,1
COMMENTS
A096535(a(n)) = n and A096535(m) <> n for m < a(n), concerning first conjecture in A096535.
LINKS
EXAMPLE
a(0) = A096274(1) = 2; a(1) = A132678(1) = 0.
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a197877 n = a197877_list !! n
a197877_list = map (fromJust . (`elemIndex` a096535_list)) [0..]
CROSSREFS
Sequence in context: A334842 A320372 A097709 * A104555 A140571 A078049
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 19 2011
STATUS
approved