A216093 a(n) = 10^n - (5^(2^n) mod 10^n).
5, 75, 375, 9375, 9375, 109375, 7109375, 87109375, 787109375, 1787109375, 81787109375, 81787109375, 81787109375, 40081787109375, 740081787109375, 3740081787109375, 43740081787109375, 743740081787109375
Offset: 1
Keywords
Links
- Robert Israel, Table of n, a(n) for n = 1..999
Programs
-
Maple
f:= n -> (-5 &^(2^n) mod 10^n): map(f, [$1..30]); # Robert Israel, Apr 24 2017
-
Sage
def A216093(n) : return crt(-1, 0, 2^n, 5^n) # Eric M. Schmidt, Sep 01 2012
Formula
2^(4*5^(n-1)) mod 10^n - 1.
Comments