OFFSET
1,1
COMMENTS
A064353(n) is generally 1 if n is odd and 3 if n is even. An 'erratic' number breaks this rule.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
A064353(3) is predicted to be 1 but is 3 so 3 is in the list.
PROG
(Haskell)
import Data.List (findIndices)
a146562 n = a146562_list !! (n-1)
a146562_list = map (+ 1) $
findIndices (/= 0) $ zipWith (-) a064353_list $ cycle [1, 3]
-- Reinhard Zumkeller, Aug 03 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Perry (johnandruth(AT)jrperry.orangehome.co.uk), Nov 01 2008
STATUS
approved