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 A028835 #19 Jun 20 2021 02:27:25 %S A028835 2,3,5,7,11,12,14,16,20,21,23,25,29,30,32,34,38,39,41,43,47,48,50,52, %T A028835 56,57,59,61,65,66,68,70,74,75,77,79,83,84,86,88,92,93,95,97,101,102, %U A028835 104,106,110,111,113,115,119,120,122,124,128,129,131,133,137,138,140,142,146,147,149,151,155,156 %N A028835 Numbers whose iterated sum of digits is a prime. %C A028835 Also numbers k such that k mod 9 is an element of {2,3,5,7}. Hence as n tends to infinity, a(n)/n converges to 9/4 quite rapidly. - _Stefan Steinerberger_, Apr 23 2006 %H A028835 Reinhard Zumkeller, <a href="/A028835/b028835.txt">Table of n, a(n) for n = 1..10000</a> %e A028835 38 -> 3 + 8 = 11 -> 1 + 1 = 2 is a prime. %t A028835 Select[Range[200], PrimeQ[Mod[ #, 9]] &] (* _Stefan Steinerberger_, Apr 23 2006 *) %o A028835 (Haskell) %o A028835 import Data.List (findIndices) %o A028835 a028835 n = a028835_list !! (n-1) %o A028835 a028835_list = findIndices (`elem` [2,3,5,7]) $ map a010888 [0..] %o A028835 -- _Reinhard Zumkeller_, Oct 21 2011 %Y A028835 Cf. A010888, A028834, A028843. %K A028835 nonn,base,easy,nice %O A028835 1,1 %A A028835 _N. J. A. Sloane_ %E A028835 Extended (and corrected) by Scott Lindhurst (ScottL(AT)alumni.princeton.edu)