A325104 Number of increasing pairs of positive integers up to n with at least one binary carry.
0, 0, 0, 2, 2, 5, 9, 15, 15, 20, 26, 35, 43, 54, 66, 80, 80, 89, 99, 114, 126, 143, 161, 182, 198, 219, 241, 266, 290, 317, 345, 375, 375, 392, 410, 437, 457, 486, 516, 551, 575, 608, 642, 681, 717, 758, 800, 845, 877, 918, 960, 1007, 1051, 1100, 1150, 1203
Offset: 0
Keywords
Examples
The a(3) = 2 through a(8) = 15 pairs: {1,3} {1,3} {1,3} {1,3} {1,3} {1,3} {2,3} {2,3} {1,5} {1,5} {1,5} {1,5} {2,3} {2,3} {1,7} {1,7} {3,5} {2,6} {2,3} {2,3} {4,5} {3,5} {2,6} {2,6} {3,6} {2,7} {2,7} {4,5} {3,5} {3,5} {4,6} {3,6} {3,6} {5,6} {3,7} {3,7} {4,5} {4,5} {4,6} {4,6} {4,7} {4,7} {5,6} {5,6} {5,7} {5,7} {6,7} {6,7}
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Range[n],{2}],Intersection[Position[Reverse[IntegerDigits[#[[1]],2]],1],Position[Reverse[IntegerDigits[#[[2]],2]],1]]!={}&]],{n,0,30}]
Formula
a(n) = 2 * A080572(n - 2) + n.
Comments