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.

A102385 Primes in A004094.

Original entry on oeis.org

2, 23, 61, 821, 4201, 270131, 61277761, 274359834731, 23888027348153, 86936981079782063, 4243031147170261950811, 272838646828154727511151, 821882010875193363312928672952261, 274562423560500997742392394025368175422471, 4266472836315949449695828501889595072967427241
Offset: 1

Views

Author

Reinhard Zumkeller, Jan 06 2005

Keywords

Examples

			n=17 -> 2^17 = 131072 -> 270131 = A000040(23652), therefore A004094(17) = 270131 is a term.
		

Crossrefs

Programs

  • Mathematica
    seq[digmax_] := Sort[Select[Table[IntegerReverse[2^n], {n, 0, Floor[digmax*Log2[10]]}], PrimeQ]]; seq[33] (* Amiram Eldar, Oct 02 2024 *)