This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A283002 #16 Oct 30 2024 21:43:03 %S A283002 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47, %T A283002 49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93, %U A283002 95,97,99,200,301,402,503,604,705,806,907,1008,1109 %N A283002 Numbers that are not of the form m + (sum of base-100 digits of m). %C A283002 Sum of base-100 digits of m can also be described as "break the digit-string of m into pairs starting at the right, and add these 2-digit numbers". For example, 12345 -> 45 + 23 + 1 = 69. %e A283002 Sum of pairs of digits of 12345 = 45 + 23 + 1 = 69. %e A283002 The terms of this sequence can be found with a sieve: %e A283002 n = 1 to 99 --> doubling --> 2, 4, 6, 8, 10, ..., 196, 198 %e A283002 n = 100 to 199 --> 101, 103, 105, ... , 199, 201, ... , 297, 299 %e A283002 n = 200 to 299 --> 202, 204, 206, 208, ... , 398, 400 %e A283002 n = 300 to 303 --> 303, 305, 307, 309 %e A283002 n = 1 to 303 (sorted) --> 2, 4, 6, ..., 96, 98, 100, 101, 102, 103, ..., 197, 198, 199, 201, 202, 203, 204, 205, ...,297, 298, 299, 300, 302, 303, 304, 305, 306, 307, 308, 309, 310, 312, 314, 316, 318, 320, 322, ..., 398, 400 %e A283002 The numbers < 304 that are missing are the terms of this sequence: 1, 3, 5, 7, ..., 97, 99, 200, 301 %Y A283002 This is a base-100 analog of A003052. %K A283002 nonn,base %O A283002 1,2 %A A283002 _Peter Weiss_, Feb 26 2017