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.

A136365 Numbers k such that A075986(k) is prime.

Original entry on oeis.org

1, 171, 210, 550, 1445, 1809, 2176, 2719
Offset: 1

Views

Author

Alexander Adamchuk, Dec 27 2007

Keywords

Crossrefs

Cf. A075986 (numerator of 1 + 1/p(1)^2 + ... + 1/p(n)^2, where p(k) = prime(k)).

Programs

  • Mathematica
    f=1; Do[ p=Prime[n]; f=f + 1/p^2; g=Numerator[ f ]; If[ PrimeQ[ g ], Print[ {n, g} ] ], {n, 1, 210} ]

Extensions

a(4)-a(8) from Robert Price, Aug 26 2019