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.

A136369 Numbers k such that A136368(k) is prime.

Original entry on oeis.org

2, 5, 6, 8, 18, 20, 98, 1863
Offset: 1

Views

Author

Alexander Adamchuk, Dec 27 2007

Keywords

Crossrefs

Cf. A024530 (numerator of Sum_{k=1..n} (-1)^k / prime(k)).
Cf. A136368 (numerator of Sum_{k=1..n} (-1)^(k+1)/prime(k)^2).

Programs

  • Mathematica
    f=0; Do[ p=Prime[n]; f=f + (-1)^(n+1)*1/p^2; g=Numerator[f] ;If[ PrimeQ[g], Print[ {n, g} ] ], {n, 1, 100} ]

Extensions

a(8) from Robert Price, Aug 28 2019