A067139 Irreducible elements in OR-numbral arithmetic.
1, 2, 3, 5, 9, 11, 13, 17, 19, 23, 25, 29, 33, 35, 37, 39, 41, 43, 49, 53, 57, 65, 67, 69, 71, 75, 77, 79, 81, 83, 87, 89, 93, 97, 101, 105, 107, 113, 117, 121, 129, 131, 133, 135, 137, 139, 141, 143, 145, 147, 149, 151, 157, 159, 161, 163, 167, 169, 171, 177, 179
Offset: 1
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.
- Index entries for sequences related to dismal (or lunar) arithmetic
Crossrefs
Programs
-
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
Comments