A185041 a(n) = number of partitions of 10^n mod 10.
1, 2, 2, 1, 4, 9, 8, 0, 2, 9, 9, 5, 6, 5, 7, 2, 1, 6, 9, 6
Offset: 0
Keywords
Examples
p(10^2) = 190569292, so a(2) = 2
Crossrefs
Equals A070177(n) mod 10
Programs
-
Mathematica
Table[Mod[PartitionsP[10^n], 10], {n, 0, 6}]
-
PARI
a(n)=numbpart(10^n)%10 \\ Charles R Greathouse IV, Apr 06 2016
Comments