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.

A104073 Primes of the form 2^n+7^2.

Original entry on oeis.org

53, 113, 16433, 262193, 4194353, 67108913, 5846006549323611672814739330865132078623730171953, 1496577676626844588240573268701473812127674924007473
Offset: 1

Views

Author

Roger L. Bagula, Mar 02 2005

Keywords

Comments

a(14) has 1187 decimal digits. - Vincenzo Librandi, Jul 19 2012

Programs

  • Magma
    [ a: n in [0..250] | IsPrime(a) where a is 2^n+49]; // Vincenzo Librandi, Jul 19 2012
  • Mathematica
    Select[Table[2^n+49,{n,0,400}],PrimeQ] (* Vincenzo Librandi, Jul 19 2012 *)