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 A033549 #37 Jan 06 2024 22:00:58 %S A033549 32,56,88,175,176,182,212,218,227,248,293,295,323,331,338,362,377,386, %T A033549 394,397,398,409,439,446,457,481,499,508,563,571,595,599,635,637,655, %U A033549 671,728,751,752,755,761,767,779,820,821,826,827,847,848,857,869,878 %N A033549 Numbers k such that sum of digits of k-th prime equals sum of digits of k. %C A033549 A090431(a(n)) = 0, A007953(a(n)) = A007605(a(n)). %D A033549 Proposed by _G. L. Honaker, Jr._ %H A033549 T. D. Noe, <a href="/A033549/b033549.txt">Table of n, a(n) for n = 1..1000</a> %e A033549 131 is the 32nd prime and sum of digits of both is 5. %t A033549 Select[Range[1000],Total[IntegerDigits[#]]==Total[IntegerDigits[ Prime[#]]]&] (* _Harvey P. Dale_, May 05 2011 *) %o A033549 (Haskell) %o A033549 a033549 n = a033549_list !! (n-1) %o A033549 a033549_list = filter ((== 0) . a090431) [1..] %o A033549 -- _Reinhard Zumkeller_, Mar 16 2014 %o A033549 (PARI) is(n,p=prime(n))=sumdigits(n)==sumdigits(p) \\ _Charles R Greathouse IV_, Feb 07 2017 %o A033549 (Python) %o A033549 from sympy.ntheory.factor_ import digits %o A033549 from sympy import prime %o A033549 print([n for n in range(1, 1001) if sum(digits(n)[1:])==sum(digits(prime(n))[1:])]) # _Indranil Ghosh_, Jun 27 2017 %Y A033549 Cf. A033548, A071600. %K A033549 nonn,base,nice %O A033549 1,1 %A A033549 Calculated by _Jud McCranie_