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

A258449
Numbers n such that A062234(n) = A062234(n+1) = A062234(n+2).
7
302, 336, 384, 805, 1016, 1043, 1963, 2201, 2364, 2398, 2495, 2506, 2528, 2574, 2683, 2734, 3208, 4267, 4561, 4659, 5234, 5415, 5525, 5620, 5759, 5903, 6044, 6258, 6543, 7737, 7928, 8019, 8039, 8115, 8521, 8717, 8833, 9056, 9165, 9379, 9730, 10302, 10495
OFFSET
1,1
COMMENTS
a(n) = A258432(m), where m such that A258383(m) = 3.
LINKS
EXAMPLE
a(1) = A258437(A258432(3)) = 302.
PROG
(Haskell)
a258449 n = a258449_list !! (n-1)
a258449_list = map a258432 $ filter ((== 3) . a258383) [1..]
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 31 2015
STATUS
approved