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.

A224469 Primes of the form 8^n - n.

Original entry on oeis.org

7, 509, 2596148429267413814265248164610011, 43556142965880123323311949751266331066323
Offset: 1

Views

Author

Alex Ratushnyak, Apr 06 2013

Keywords

Comments

The next term is too big to display.
Corresponding n are given in A224471.

Crossrefs

Programs

  • Maple
    A224469:=proc(q) local n;
    for n from 1 to q do if isprime(8^n-n) then print(8^n-n); fi; od; end:
    A224469(100); # Paolo P. Lava, Apr 19 2013
  • Mathematica
    Select[Table[8^n - n, {n, 500}], PrimeQ] (* Alonso del Arte, Apr 06 2013 *)