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”).
%I #9 Mar 11 2020 03:50:26
%S 7,5,3,1,11,1,1,1,1,3,0,2,5,3,3,2,0,9,2,3,6,1,0,0,4,0
%N Distribution of letters in the name of all months of the year (English).
%C Each of the 26 letters of the (English) alphabet, encoded via a->1, b->2, ... , z->26, appears a(n) times in the string of all the (English) names of the twelve months of the year. The letters are taken case insensitive.
%F a(n) = number of times the letter with standard code n (for the code see a comment above), appears in all the twelve English names for the months of the year.
%e a(1) = 7 because the first letter 'a' (or 'A') of the English alphabet appears in 'January' twice, in 'February' once, in 'March' once, in 'April' once, in 'May' once and once in 'August'.
%e a(5) = 11 = 0 + 1 + 0 + 0 + 0 + 1 + 0 + 0 + 3 + 1 + 2 + 3.
%e a(11) = 0 because there is no 'k' or 'K' in the name of the months in English.
%Y Cf. A219241 (analog for days of the week).
%K nonn,word,fini,full
%O 1,1
%A _Wolfdieter Lang_, Dec 14 2012