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 A119496 #7 Oct 13 2022 10:51:58 %S A119496 15,64,83,90,106,107,120,122,135,168,173,180,181,185,193,198,222,229, %T A119496 239,242,289,299,347,356,364,369,407,424,447,458,462,470,479,481,503, %U A119496 542,552,568,580,583,607,612,648,657,676,683,684,688,742,758,787 %N A119496 Numbers n such that 2^n, 3^n, 5^n and 7^n have even digit sum. %e A119496 {2^15,3^15,5^15,7^15}={32768,14348907,30517578125,4747561509943} with even digit sum {26,36,44,64}. %t A119496 Select[Range[800],AllTrue[Total/@(IntegerDigits/@({2,3,5,7}^#)),EvenQ]&] (* _Harvey P. Dale_, Oct 13 2022 *) %o A119496 (PARI) isok(n) = !(sumdigits(2^n) % 2) && !(sumdigits(3^n) % 2) && !(sumdigits(5^n) % 2) && !(sumdigits(7^n) % 2); \\ _Michel Marcus_, Oct 10 2013 %Y A119496 Subsequence of A118734 and of A118867. %K A119496 base,nonn %O A119496 1,1 %A A119496 _Zak Seidov_, May 26 2006