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.

A093360 a(n) = prime(n)^(n-1).

Original entry on oeis.org

1, 3, 25, 343, 14641, 371293, 24137569, 893871739, 78310985281, 14507145975869, 819628286980801, 177917621779460413, 22563490300366186081, 1718264124282290785243, 256666986187667409334369
Offset: 1

Views

Author

Jorge Coveiro, Apr 28 2004

Keywords

Comments

Main diagonal of A319075. - Omar E. Pol, Sep 10 2018

Crossrefs

Cf. A062457.

Programs

  • Maple
    seq(ithprime(x)^(x-1),x=1..20);
  • Mathematica
    Table[Prime[n]^(n-1),{n,20}] (* Harvey P. Dale, Jun 11 2014 *)
  • PARI
    a(n) = prime(n)^(n-1);
    vector(20, n, a(n)) \\ Michel Marcus, Sep 13 2018