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”).

A045563
Numbers whose factorial has '64' as its final two digits before the trailing zeros.
2
20, 23, 92, 99, 100, 101, 143, 156, 195, 198, 208, 219, 227, 230, 268, 280, 327, 331, 352, 355, 377, 415, 449, 497, 500, 501, 560, 568, 596, 607, 632, 653, 681, 689, 749, 761, 765, 772, 783, 794, 856, 902, 914, 932, 946, 964, 1005, 1014, 1035, 1085, 1097
OFFSET
1,1
PROG
(PARI) last(n, k)=if(n*8\9-1<k, n=n!; return(n/10^valuation(n, 10)%10^k)); my(m=Mod(1, 5^k)); for(i=2, n, m*=i/10^valuation(i, 5)); lift(chinese(m, Mod(0, 2^k))) \\ Gives the last k decimal digits of n!.
is(n)=last(n, 2)==64 \\ Charles R Greathouse IV, Oct 22 2014
(PARI) is(n)=my(m=Mod(1, 25)); for(i=2, n, m*=i/10^valuation(i, 5)); m==64 \\ Charles R Greathouse IV, Oct 22 2014
(PARI) v=List(); m=Mod(1, 25); for(n=2, 1e6, m*=n/10^valuation(n, 5); if(m==64, listput(v, n); if(#v==100, return(Vec(v))))) \\ Charles R Greathouse IV, Oct 22 2014
CROSSREFS
Sequence in context: A153717 A358424 A303303 * A013339 A199360 A199585
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Robert G. Wilson v, Dec 14 2000
STATUS
approved