A014188 Fourth powers of palindromes.
0, 1, 16, 81, 256, 625, 1296, 2401, 4096, 6561, 14641, 234256, 1185921, 3748096, 9150625, 18974736, 35153041, 59969536, 96059601, 104060401, 151807041, 214358881, 294499921, 395254161, 519885601, 671898241
Offset: 0
Programs
-
Mathematica
palQ[n_]:=Module[{idn=IntegerDigits[n]},idn==Reverse[idn]]; Select[ Range[ 0,200],palQ]^4 (* Harvey P. Dale, Feb 09 2015 *)