OFFSET
1,2
COMMENTS
Numbers m such that there is no number d in the range 1 < d < m with d*k = m for any 1 < k < m, where * is defined in A066376.
See A048888 for the definition of OR-numbral arithmetic. Note that 2 is the only prime element in OR-numbral arithmetic; for all other nonunit irreducibles x there exist numbers a and b not divisible by x such that x is a divisor of a * b.
Numbers m such that A066376(m) = 1.
1 together with primes in lunar arithmetic base 2. - N. J. A. Sloane, Aug 14 2010
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..500
D. Applegate, M. LeBrun and N. J. A. Sloane, Dismal Arithmetic, arXiv:1107.1130 [math.NT], 2011. [Note: we have now changed the name from "dismal arithmetic" to "lunar arithmetic" - the old name was too depressing]
D. Applegate, M. LeBrun, N. J. A. Sloane, Dismal Arithmetic, J. Int. Seq. 14 (2011) # 11.9.8.
A. Frosini and S. Rinaldi, On the Sequence A079500 and Its Combinatorial Interpretations, J. Integer Seq., Vol. 9 (2006), Article 06.3.1.
PROG
(Haskell)
import Data.List (elemIndices)
a067139 n = a067139_list !! (n-1)
a067139_list = 1 : map (+ 1) (elemIndices 1 a066376_list)
-- Reinhard Zumkeller, Mar 01 2013
CROSSREFS
See A169912 for the number of elements that are n bits long - N. J. A. Sloane, Aug 31 2010. See A171000 for the binary expansions.
KEYWORD
nonn,nice
AUTHOR
Jens Voß, Jan 02 2002
EXTENSIONS
STATUS
approved