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.

A245593 a(n) = (R_n)^n.

Original entry on oeis.org

1, 121, 1367631, 1523548331041, 169342410709747836551, 1881665133128606900860142518161, 2090750117762021873788017450039922462386871, 232305712669729896500117628007183171975956078054818623681, 2581174768482624149493549155062886015819364354785066837288515125486819591, 2867971987924469323820403313431021627485478704243749999500499658223600043001340850612575601
Offset: 1

Views

Author

Derek Orr, Jul 27 2014

Keywords

Comments

R_n is the repdigit 11...111 with n 1's.

Examples

			1^1 = 1.
11^2 = 121.
111^3 = 1367631.
etc..
		

Crossrefs

Cf. A002275.

Programs

  • Magma
    [((10^n-1)/9)^n: n in [1..10]]; // Vincenzo Librandi, Jul 27 2014
  • Mathematica
     Table[((10^n - 1)/9)^n, {n, 10}] (* Vincenzo Librandi, Jul 27 2014 *)
  • PARI
    a(N) = for(n=1,N,print1(((10^n-1)/9)^n,", ")) \\ vary the program's range for any N