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 A211821 #17 May 17 2025 00:34:23 %S A211821 1,19,37,73,109,127,163,181,199,271,307,361,379,397,433,487,523,541, %T A211821 577,613,631,703,739,757,811,829,883,919,937,991,1009,1063,1117,1153, %U A211821 1171,1279,1297,1369,1387,1423,1459,1531,1549,1567,1621,1657,1693,1747,1783 %N A211821 Numbers with all divisors with additive digital root of 1. %C A211821 All divisors of numbers from this sequence are in this sequence. Likewise, the product of any terms in this sequence is a number that is also in this sequence. %C A211821 Union of A061237 (prime numbers == 1 (mod 9)) and nonprime numbers A211822. %C A211821 Subsequence of A017173 (numbers of form 9n+1). - _Jaroslav Krizek_ %C A211821 For prime numbers, it is enough to verify that the number itself is congruent to 1 mod 9. The first composite term is 361, which is the square of the first prime in this sequence. - _Alonso del Arte_, May 02 2012 %F A211821 a(n) = 9*k(n) + 1 for k(n) = A211823(n). %e A211821 Number 703 with divisors 1, 19, 37, 703 is in sequence because all divisors have additive digital root of 1. %t A211821 digitalRoot[n_, b_:10] := FixedPoint[Plus@@IntegerDigits[#, b] &, n]; A211821 = Select[Range[1, 1999, 9], Union[digitalRoot[Divisors[#]]] == {1} &] (* _Alonso del Arte_, May 02 2012 *) %Y A211821 Cf. A211822, A211823, A024906, A061237, A017173. %K A211821 nonn,base %O A211821 1,2 %A A211821 _Jaroslav Krizek_, Apr 26 2012