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.

A030074 Squares which are palindromes in base 14.

This page as a plain text file.
%I A030074 #14 Feb 10 2025 21:32:47
%S A030074 0,1,4,9,225,576,900,2209,27225,38809,44521,50625,57121,155236,166464,
%T A030074 178084,4796100,5978025,7535025,8732025,10017225,30140100,32490000,
%U A030074 73359225,1475865889,1490963769,1506138481,1521390025
%N A030074 Squares which are palindromes in base 14.
%H A030074 Vincenzo Librandi, <a href="/A030074/b030074.txt">Table of n, a(n) for n = 1..57</a>
%H A030074 Patrick De Geest, <a href="https://www.worldofnumbers.com/nobase10pg2.htm">Palindromic Squares in bases 2 to 17</a>
%t A030074 pb14Q[n_]:=Module[{idn14=IntegerDigits[n, 14]}, idn14==Reverse[idn14]]; Select[Range[0, 20000]^2, pb14Q] (* _Vincenzo Librandi_, Jul 24 2014 *)
%Y A030074 Cf. A002779, A029734, A029738, A029806, A029983, A029985, A029987, A029989, A029991, A029993, A029995, A029997, A029999,  A030075.
%K A030074 base,nonn
%O A030074 1,3
%A A030074 _Patrick De Geest_