A103607 Write down the semiprimes but omit any semiprime (such as 46 or 69) that is the concatenation of consecutive semiprimes.
4, 6, 9, 10, 14, 15, 21, 22, 25, 26, 33, 34, 35, 38, 39, 49, 51, 55, 57, 58, 62, 65, 74, 77, 82, 85, 86, 87, 91, 93, 94, 95, 106, 111, 115, 118, 119, 121, 122, 123, 129, 133, 134, 141, 142, 143, 145, 146, 155, 158, 159, 161, 166, 169, 177, 178, 183, 185, 187
Offset: 1
Examples
46 is not a term because concatenate(sp(1),sp(2)) = 46 = 2 * 23. 69 is not a term because concatenate(sp(2),sp(3)) = 69 = 3 * 23. 469 is not a term because concatenate(sp(1),sp(2),sp(3)) = 469 = 7 * 67. 1415 is not a term because concatenate(sp(5),sp(6)) = 1415 = 5 * 283. 2122 is not a term because concatenate(sp(7),sp(8)) = 2122 = 2 * 1061. 3839 is not a term because concatenate(sp(14),sp(15)) = 3839 = 11 * 349. 469101415 is not a term because concatenate(sp(1),sp(2),sp(3),sp(4),sp(5),sp(6)) = 469101415 = 5 * 93820283. Where sp(i) is A001358(i).
Extensions
Name edited by Giovanni Resta, Jun 16 2016
Comments