login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A245593
a(n) = (R_n)^n.
2
1, 121, 1367631, 1523548331041, 169342410709747836551, 1881665133128606900860142518161, 2090750117762021873788017450039922462386871, 232305712669729896500117628007183171975956078054818623681, 2581174768482624149493549155062886015819364354785066837288515125486819591, 2867971987924469323820403313431021627485478704243749999500499658223600043001340850612575601
OFFSET
1,2
COMMENTS
R_n is the repdigit 11...111 with n 1's.
LINKS
EXAMPLE
1^1 = 1.
11^2 = 121.
111^3 = 1367631.
etc..
MATHEMATICA
Table[((10^n - 1)/9)^n, {n, 10}] (* Vincenzo Librandi, Jul 27 2014 *)
PROG
(PARI) a(N) = for(n=1, N, print1(((10^n-1)/9)^n, ", ")) \\ vary the program's range for any N
(Magma) [((10^n-1)/9)^n: n in [1..10]]; // Vincenzo Librandi, Jul 27 2014
CROSSREFS
Cf. A002275.
Sequence in context: A317197 A082215 A123179 * A053885 A068490 A077735
KEYWORD
nonn,easy
AUTHOR
Derek Orr, Jul 27 2014
STATUS
approved