OFFSET
1,1
COMMENTS
In leap years all these dates come from the months January, February, ..., December, in the form m.d, with a 0 in front of the days d = 1..9, with 7, 4, 5, 4, 4, 5, 4, 6, 4, 5, 5, 6 prime dates, respectively, adding up to 59. For the corresponding leap year case with 58 prime dates see A327914.
MATHEMATICA
Select[Flatten@ Array[Function[{m, d}, Array[FromDigits[m~Join~PadLeft[IntegerDigits[#], 2]] &, d]] @@ {IntegerDigits@ #, Which[MemberQ[{4, 6, 9, 11}, #], 30, # == 2, 29, True, 31]} &, 12], PrimeQ] (* Michael De Vlieger, Oct 03 2019 *)
fd[{m_, d_}]:=FromDigits[Flatten[{m, PadLeft[{d}, 2, 0]}]]; Select[fd[Take[#, {2, 3}]]&/@ DateRange[ {2024, 1, 1}, {2024, 12, 31}], PrimeQ] (* Harvey P. Dale, Sep 01 2023 *)
CROSSREFS
KEYWORD
nonn,easy,fini,full
AUTHOR
Wolfdieter Lang, Sep 30 2019
STATUS
approved