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.

A099482 Semiprimes of the form 2^k - k^2.

Original entry on oeis.org

1927, 8023, 32543, 2096711, 8388079, 137438952103, 549755812367, 2199023253871, 8796093020359, 140737488353119, 562949953418911, 36028797018960943, 147573952589676408439, 37778931862957161703943
Offset: 1

Views

Author

Hugo Pfoertner, Oct 18 2004

Keywords

Examples

			a(2) = 8023 because 8023 = 71*113 = 2^13 - 13^2 = 2^A099481(2) - A099481(2)^2.
		

Crossrefs

Cf. A024012 2^n-n^2, A099481 2^k-k^2 is a semiprime, A072180 2^k-k^2 is prime, A075896 primes of the form 2^k-k^2.

Programs

  • Mathematica
    Select[Table[2^n - n^2, {n, 100}], PrimeOmega[#] == 2&] (* Vincenzo Librandi, Sep 21 2012 *)