A122467 Write n-th semiprime in binary, sum as if decimal numbers.
100, 210, 1211, 2221, 3331, 4442, 14543, 24653, 35654, 46664, 146665, 246675, 346686, 446796, 546907, 648017, 758018, 868029, 978140, 1089141, 1200151, 1311261, 2311262, 3311363, 4312373, 5313474, 6323484, 7333585, 8343695
Offset: 1
Examples
a(4) = 100 + 110 + 1001 + 1010 = 2221 because the first 4 semiprimes can be written in binary as 100_2 + 110_2 + 1001_2 + 1010_2. a(34) = 100 + 110 + 1001 + 1010 + 1110 + 1111 + 10101 + 10110 + 11001 + 11010 + 100001 + 100010 + 100011 + 100110 + 100111 + 101110 + 110001 + 110011 + 110111 + 111001 + 111010 + 111110 + 1000001 + 1000101 + 1001010 + 1001101 + 1010010 + 1010101 + 1010110 + 1010111 + 1011011 + 1011101 + 1011110 + 1011111 = 13398139 is prime.
Comments