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.

A355137 Indices of primes in the sequence A000296.

Original entry on oeis.org

5, 6, 41, 119, 5118
Offset: 1

Views

Author

Vaclav Kotesovec, Jun 20 2022

Keywords

Comments

The next term, if it exists, is > 20000.

Examples

			5 is in the sequence because A000296(5) = 11 is prime.
		

Crossrefs

Programs

  • Mathematica
    s = 1; A000296 = Table[s = BellB[n] - s, {n, 0, 1000}]; Select[Range[1000], PrimeQ[A000296[[#]]]&]