OFFSET
0,3
COMMENTS
This is a periodic sequence (1, 8, 1, 4, 5, 6, 1, 8, 1, 0, 1, 2, 9, 4, 5, 6, 9, 2, 1, 0) with period 20 (which is twice the base).
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1).
EXAMPLE
For n = 3, a(3) = 3^4 mod 10 = 81 mod 10 = 1.
MATHEMATICA
a[n_]:=Last[IntegerDigits[n^(n+1)]]; Array[a, 87, 0] (* Stefano Spezia, Sep 26 2023 *)
PROG
(PARI) a(n) = lift(Mod(n, 10)^(n+1)); \\ Michel Marcus, Sep 23 2023
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Marco Ripà, Sep 23 2023
STATUS
approved