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 #17 Aug 11 2024 14:41:29
%S 0,1,2,5,19,23,60,71,175,179,184,243,753,2431,6154,23111,30947,73188,
%T 75146,230663,237721,598350,3093852,5492899,17605724,18886025,
%U 30909092,62127180,76675186,177865385,230098566,309230287,549199524,589167859,726714741
%N Numbers k such that k^2+k+3 is a palindrome.
%H Giovanni Resta, <a href="/A027714/b027714.txt">Table of n, a(n) for n = 1..50</a>
%H P. De Geest, <a href="https://www.worldofnumbers.com/quasimor.htm">Palindromic Quasi_Over_Squares of the form n^2+(n+X)</a>
%t npalQ[n_]:=Module[{c=n^2+n+3},c==IntegerReverse[c]]; Select[Range[ 0,31*10^5],npalQ] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, Aug 15 2016 *)
%Y Cf. A027715, A027688, A027752, A027753, A027712, A027716.
%K nonn,base
%O 1,3
%A _Patrick De Geest_
%E More terms from _Giovanni Resta_, Aug 29 2018