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.

A301637 Primes of the form 4^k + k + 1.

Original entry on oeis.org

2, 19, 5444517870735015415413993718908291383363
Offset: 1

Views

Author

Seiichi Manyama, Mar 25 2018

Keywords

Crossrefs

Primes of the form b^k+k+1: A061421 (b=2), A182327 (b=3), this sequence (b=4).
Cf. A301633.

Programs

  • Maple
    a:=n->`if`(isprime(4^k+k+1),4^k+k+1,NULL): seq(a(k),k=0..300); # Muniru A Asiru, Mar 25 2018

Formula

a(n) = 4^(2*A301633(n)) + 2*A301633(n) + 1.