A186080 Fourth powers that are palindromic in base 10.
0, 1, 14641, 104060401, 1004006004001, 10004000600040001, 100004000060000400001, 1000004000006000004000001, 10000004000000600000040000001, 100000004000000060000000400000001, 1000000004000000006000000004000000001, 10000000004000000000600000000040000000001, 100000000004000000000060000000000400000000001
Offset: 1
Links
- P. De Geest, Palindromic cubes (The Simmons test is mentioned here) [broken link]
- G. J. Simmons, Palindromic powers, J. Rec. Math., 3 (No. 2, 1970), 93-98. [Annotated scanned copy]
Programs
-
Magma
[ p: n in [0..10000000] | s eq Reverse(s) where s is Intseq(p) where p is n^4 ];
-
Mathematica
Do[If[Module[{idn = IntegerDigits[n^4, 10]}, idn == Reverse[idn]], Print[n^4]], {n, 100000001}]
Formula
a(n) = A056810(n)^4.
Extensions
a(11)-a(13) using extensions of A056810 from Hugo Pfoertner, Oct 22 2021
Comments