cp's OEIS Frontend

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.

A079132 Primes such that iterated sum-of-digits (A038194) is even.

Original entry on oeis.org

2, 11, 13, 17, 29, 31, 47, 53, 67, 71, 83, 89, 101, 103, 107, 137, 139, 157, 173, 179, 191, 193, 197, 211, 227, 229, 233, 251, 263, 269, 281, 283, 317, 337, 353, 359, 373, 389, 409, 431, 443, 449, 461, 463, 467, 479, 499, 503, 521, 557, 569, 571, 587, 593, 607
Offset: 1

Views

Author

Klaus Brockhaus, Dec 28 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[120]], EvenQ[Mod[#, 9]] &] (* Bruno Berselli, Aug 31 2012 *)
  • PARI
    forprime(p=2,600,if((p%9)%2==0,print1(p,",")))