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.

A365936 Final digit (in decimal system) of n^(n-1) = A000169(n).

Original entry on oeis.org

1, 2, 9, 4, 5, 6, 9, 2, 1, 0, 1, 8, 1, 4, 5, 6, 1, 8, 1, 0, 1, 2, 9, 4, 5, 6, 9, 2, 1, 0, 1, 8, 1, 4, 5, 6, 1, 8, 1, 0, 1, 2, 9, 4, 5, 6, 9, 2, 1, 0, 1, 8, 1, 4, 5, 6, 1, 8, 1, 0, 1, 2, 9, 4, 5, 6, 9, 2, 1, 0, 1, 8, 1, 4, 5, 6, 1, 8, 1, 0, 1, 2, 9, 4, 5, 6, 9
Offset: 1

Views

Author

Marco RipĂ , Sep 23 2023

Keywords

Comments

This is a periodic sequence with period 20 which is twice the considered radix.

Examples

			For n = 4, a(4) = 4^3 mod 10 = 64 mod 10 = 4.
		

Crossrefs

Programs

  • Mathematica
    a[n_]:=Last[IntegerDigits[n^(n-1)]]; Array[a,87] (* Stefano Spezia, Sep 26 2023 *)

Formula

a(n) = n^(n-1) mod 10.
a(n) = A365935(n+10).