A210884 Dates after Jan 01 1000 which are palindromic when they are written according to the ISO-8601-format YYYYMMDD.
10011001, 10100101, 10111101, 10200201, 10211201, 10300301, 10400401, 10500501, 10600601, 10700701, 10800801, 10900901, 11011011, 11100111, 11111111, 11200211, 11211211, 11300311, 11400411, 11500511, 11600611, 11700711, 11800811, 11900911, 12011021, 12100121, 12111121, 12200221, 12211221, 12300321, 12400421, 12500521, 12600621, 12700721, 12800821, 12900921
Offset: 1
Examples
The first palindromic date in YYYYMMDD format after 'Jan 01 1000' is a(1)=10011001 (= 'Oct 01 1001' = 'Jan 01 1000' + A210883(1) days); The 47th palindromic date in YYYYMMDD format after 'Jan 01 1000' is a(47)=20200202 (= 'Feb 02 2020' = 'Jan 01 1000' + A210883(47) days). The last (331st) palindromic date in YYYYMMDD format before the year 10000 is a(331)=92900929 (= 'Sep 29 9290' = 'Jan 01 1000' + A210883(331) days).
Links
- Hieronymus Fischer, Table of n, a(n) for n = 1..331
Programs
-
Mathematica
Select[StringDelete[#,"-"]&/@(DateString[#,"ISODate"]&/@DateRange[{1000,1,1},{9999,12,31}]),PalindromeQ]//ToExpression (* Harvey P. Dale, Dec 24 2023 *)
Formula
a(n)=YYYYMMDD_date('Jan 1 1000' + A210883(n)).
n-th date after 'Jan 1 2000' = a(43+n).
Comments