This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A087999 #16 Mar 27 2020 14:01:28 %S A087999 1,2,3,4,5,6,7,8,9,10,11,12,1,14,15,8,1,18,1,20,21,22,1,24,5,2,9,28,1, %T A087999 30,1,8,33,2,35,36,1,2,3,40,1,42,1,44,45,2,1,24,7,10,3,4,1,18,55,56,3, %U A087999 2,1,60,1,2,63,8,5,66,1,4,3,70,1,72,1,2,15,4,77,6,1,40,9,2,1,84,5,2,3,88 %N A087999 a(n) is the LCM of palindromic divisors of n. %C A087999 Sequence is not multiplicative. For example, a(141) = 141 != a(3)*a(47) = 3 * 1. - _Franklin T. Adams-Watters_, Oct 27 2006 %H A087999 Indranil Ghosh, <a href="/A087999/b087999.txt">Table of n, a(n) for n = 1..50000</a> %F A087999 a(n)=1 for non-palindromic primes like 13. %e A087999 n=252: a(252)=252=n,since palindromic divisors = {1,2,3,4,6,7,9,252}; %e A087999 n=255: a(255)=15<n, palind.div ={1,3,5}. %t A087999 Table[LCM @@ Select[Divisors[k], Reverse[x = IntegerDigits[#]] == x &], {k, 88}] (* _Jayanta Basu_, Aug 12 2013 *) %o A087999 (PARI) ispal(x) = my(d=digits(x)); d == Vecrev(d); %o A087999 a(n) = lcm(select(x->ispal(x), divisors(n))); \\ _Michel Marcus_, Mar 27 2020 %Y A087999 Cf. A087990. %K A087999 base,nonn %O A087999 1,2 %A A087999 _Labos Elemer_, Oct 14 2003