cp's OEIS Frontend

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.

A027722 Numbers k such that k^2+k+7 is a palindrome.

This page as a plain text file.
%I A027722 #14 Aug 11 2024 14:41:29
%S A027722 0,1,17,31,177,274,280,301,313,1777,2764,3001,27259,30001,177237,
%T A027722 300001,312208,1762122,3000001,27515125,30000001,30122098,300000001,
%U A027722 303758458,2673533185,2817818390,3000000001,3121001208,26928832879,28255878334,30000000001
%N A027722 Numbers k such that k^2+k+7 is a palindrome.
%H A027722 Giovanni Resta, <a href="/A027722/b027722.txt">Table of n, a(n) for n = 1..45</a>
%H A027722 P. De Geest, <a href="https://www.worldofnumbers.com/quasimor.htm">Palindromic Quasi_Over_Squares of the form n^2+(n+X)</a>
%t A027722 palQ[n_] := Block[{d = IntegerDigits[n]}, d == Reverse[d]]; f[n_] := n^2 + n + 7; Select[Range[0, 10^5], palQ@ f@ # &] (* _Giovanni Resta_, Aug 29 2018 *)
%Y A027722 Cf. A027723, A027692, A027756, A005471, A027729, A027724.
%K A027722 nonn,base
%O A027722 1,3
%A A027722 _Patrick De Geest_
%E A027722 More terms from _Giovanni Resta_, Aug 28 2018