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.

A029738 Palindromic squares in base 12.

This page as a plain text file.
%I A029738 #19 Feb 12 2025 12:45:07
%S A029738 0,1,4,9,169,676,21025,24649,28561,32041,32761,84100,85264,91204,
%T A029738 373321,2989441,3045025,3179089,3553225,4165681,11957764,13060996,
%U A029738 14409616,430023169,436016161,442050625,448126561,505215529
%N A029738 Palindromic squares in base 12.
%H A029738 Vincenzo Librandi, <a href="/A029738/b029738.txt">Table of n, a(n) for n = 1..58</a>
%H A029738 Patrick De Geest, <a href="https://www.worldofnumbers.com/nobase10pg2.htm">Palindromic Squares in bases 2 to 17</a>
%t A029738 pb12Q[n_]:=Module[{idn12=IntegerDigits[n, 12]}, idn12==Reverse[idn12]]; Select[Range[0, 20000]^2, pb12Q] (* _Vincenzo Librandi_, Jul 24 2014 *)
%Y A029738 Cf. A002779,  A029734, A029806, A029983, A029985, A029987, A029989, A029991, A029993, A029995, A029997, A029999, A030074, A030075.
%K A029738 base,nonn
%O A029738 1,3
%A A029738 _Patrick De Geest_