A115845 Numbers n such that there is no bit position where the binary expansions of n and 8n are both 1.
0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 17, 20, 21, 24, 28, 32, 33, 34, 35, 40, 42, 48, 49, 56, 64, 65, 66, 67, 68, 69, 70, 71, 80, 81, 84, 85, 96, 97, 98, 99, 112, 113, 128, 129, 130, 131, 132, 133, 134, 135, 136, 138, 140, 142, 160, 161, 162, 163, 168, 170, 192
Offset: 1
Keywords
Links
- N. J. A. Sloane and Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
- Index entries for sequences defined by congruent products between domains N and GF(2)[X]
- Index entries for sequences defined by congruent products under XOR
Crossrefs
Programs
-
Mathematica
Reap[Do[If[OddQ[Binomial[9n,n]],Sow[n]],{n,0,400}]][[2,1]] (* Zak Seidov, Aug 06 2010 *)
-
PARI
is(n)=!bitand(n,n<<3) \\ Charles R Greathouse IV, Sep 23 2012
Formula
a(n)/n^k is bounded (but does not tend to a limit), where k = 1.44... = A104287. - Charles R Greathouse IV, Sep 23 2012
Extensions
Edited with a new definition by N. J. A. Sloane, Sep 01 2010, merging this sequence with a sequence submitted by Zak Seidov, Aug 06 2010
Comments