OFFSET
1,1
COMMENTS
For the case of the 16, respectively 17, pure prime dates of the form concatenate(month,day) see A327918 (non-leap years) and A327919 (leap years).
Only the three months m = 3, 7, and 11 qualify. The qualifying days are for November (m = 11): d = 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, and for months March and July (m = 3 and 7): d = 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31.
The months m = 3, 7, 11 contribute 9, 4, 3 dates, respectively, adding to 16.
MATHEMATICA
Select[Flatten[Table[d*10^IntegerLength[m]+m, {m, {3, 7, 11}}, {d, Prime[ Range[ 11]]}]], PrimeQ] (* Harvey P. Dale, May 24 2022 *)
CROSSREFS
KEYWORD
nonn,easy,fini,full
AUTHOR
Wolfdieter Lang, Oct 08 2019
STATUS
approved