login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A185041
a(n) = number of partitions of 10^n mod 10
0
1, 2, 2, 1, 4, 9, 8, 0, 2, 9, 9, 5, 6, 5, 7, 2, 1, 6, 9, 6
OFFSET
0,2
COMMENTS
p(10^n) mod 10 where p(n) = A000041(n)
EXAMPLE
p(10^2) = 190569292, so a(2) = 2
MATHEMATICA
Table[Mod[PartitionsP[10^n], 10], {n, 0, 6}]
PROG
(PARI) a(n)=numbpart(10^n)%10 \\ Charles R Greathouse IV, Apr 06 2016
CROSSREFS
Equals A070177(n) mod 10
Sequence in context: A158985 A295687 A087854 * A086873 A101560 A307456
KEYWORD
nonn
AUTHOR
Fredrik Johansson, Jan 23 2012
STATUS
approved