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

A368077
Numbers k such that row k of Pascal's triangle mod 10 contains all the numbers 0 to 9.
1
47, 59, 89, 94, 117, 118, 119, 123, 147, 173, 189, 198, 214, 219, 221, 222, 223, 233, 237, 238, 239, 243, 244, 247, 248, 297, 298, 309, 313, 317, 318, 319, 323, 339, 344, 345, 346, 347, 348, 363, 366, 367, 368, 369, 373, 397, 398, 409, 413, 414, 417, 418, 421, 422, 423, 429, 433, 437, 438, 439
OFFSET
1,1
COMMENTS
Numbers k such that A208280(k) = 10.
LINKS
EXAMPLE
a(3) = 89 is a term because
binomial(89,15) = 38163061637050680 == 0 (mod 10),
binomial(89,0) = 1 == 1 (mod 10),
binomial(89,5) = 41507642 == 2 (mod 10),
binomial(89,8) = 70625252863 == 3 (mod 10),
binomial(89,3) = 113564 == 4 (mod 10),
binomial(89,16) = 176504160071359395 == 5 (mod 10),
binomial(89,2) = 3916 == 6 (mod 10),
binomial(89,9) = 635627275767 == 7 (mod 10),
binomial(89,6) = 581106988 == 8 (mod 10), and
binomial(89,1) = 89 == 9 (mod 10).
MAPLE
filter:= proc(n) local k, S;
S:= {$0..9}:
for k from 0 to n/2 do
S:= S minus {(binomial(n, k) mod 10)};
if S = {} then return true fi
od;
false
end proc:
select(filter, [$1..1000]); # Robert Israel, Dec 10 2023
CROSSREFS
Cf. A208280.
Sequence in context: A227982 A102274 A139909 * A243430 A342093 A126980
KEYWORD
nonn,base
AUTHOR
Robert Israel, Dec 10 2023
STATUS
approved