A067398 Squares in OR-numbral arithmetic.
0, 1, 4, 7, 16, 21, 28, 31, 64, 73, 84, 95, 112, 125, 124, 127, 256, 273, 292, 311, 336, 341, 380, 383, 448, 473, 500, 511, 496, 509, 508, 511, 1024, 1057, 1092, 1127, 1168, 1205, 1244, 1279, 1344, 1385, 1364, 1407, 1520, 1533, 1532, 1535, 1792, 1841, 1892
Offset: 0
Keywords
Examples
A067398(5) = 21 since [5] * [5] = [21] in OR-numbral arithmetic.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
- D. Applegate, M. LeBrun and N. J. A. Sloane, Dismal Arithmetic [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
Programs
-
Haskell
a067398 :: Integer -> Integer a067398 0 = 0 a067398 n = orm n n where orm 1 v = v orm u v = orm (shiftR u 1) (shiftL v 1) .|. if odd u then v else 0 -- Reinhard Zumkeller, Mar 01 2013
Comments