login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A066611 a(1) = 1; a(n) = remainder when n^n is divided by (n-1)^(n-1) for n > 1. 2
1, 0, 3, 13, 53, 2906, 30391, 306356, 1544521, 314487775, 5311670611, 71438659315, 8643791799805, 208502988236908, 4525624184096751, 55200677713457866, 15583522643116493073, 466115766638709659105 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,3

LINKS

Harry J. Smith, Table of n, a(n) for n = 1..100

EXAMPLE

a(5) = 53 as 5^5 = 3125 = (4^4)*12 + 53.

MATHEMATICA

Table[ Mod[ n^n, (n - 1)^(n - 1)], {n, 2, 20} ]

Join[{1}, Table[PowerMod[n, n, (n-1)^(n-1)], {n, 2, 20}]] (* Harvey P. Dale, Dec 14 2017 *)

PROG

(PARI) { for (n=1, 100, a=n^n % (n-1)^(n-1); if (n==1, a=1); write("b066611.txt", n, " ", a) ) } \\ Harry J. Smith, Mar 12 2010

CROSSREFS

Sequence in context: A151211 A121240 A065839 * A180933 A048514 A037779

Adjacent sequences: A066608 A066609 A066610 * A066612 A066613 A066614

KEYWORD

easy,nonn

AUTHOR

Amarnath Murthy, Dec 24 2001

EXTENSIONS

More terms from Robert G. Wilson v, Dec 26 2001

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 31 08:44 EDT 2023. Contains 361645 sequences. (Running on oeis4.)