OFFSET
1,1
COMMENTS
An Islamic year approximates 12 lunar months with 354 11/30 days (or 30 years with 10631 days).
Also, numbers m such that ((14 + 11*m) mod 30) < 11.
Worldwide, five different Islamic leap-year sequences are currently in use; this sequence (called "Fazari") is the most common of the five. See A350539. - Robert B Fowler, Dec 07 2022
REFERENCES
N. Dershowitz and E. M. Reingold, Calendrical Calculations, Cambridge University Press, 1997.
FORMULA
a(n) = floor((30*n - 4)/11).
MATHEMATICA
Select[Range[100], LeapYearQ[{#}, CalendarType -> "Islamic"]&] (* Jean-François Alcover, Apr 26 2020 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved