login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A028504 Palindromes of form k*(k+2); or palindromes 1 less than a square. 5

%I #16 Aug 29 2018 06:10:05

%S 0,3,8,99,323,575,4224,5775,9999,36863,42024,999999,3055503,3640463,

%T 5597955,8803088,32855823,99999999,360696063,422919224,9999999999,

%U 30485858403,30536863503,32154945123,59080108095,86310801368,304816618403,999999999999,3490500050943

%N Palindromes of form k*(k+2); or palindromes 1 less than a square.

%C 10^(2*m) - 1 for m > 0 are terms. - _Chai Wah Wu_, May 25 2017

%H Giovanni Resta, <a href="/A028504/b028504.txt">Table of n, a(n) for n = 1..53</a>

%H P. De Geest, <a href="http://www.worldofnumbers.com/quapron.htm">Palindromic quasipronic numbers of the form n(n+2)</a>

%F a(n) = A028503(n) * (A028503(n) + 2) = A070253(n)^2 - 1 = A070254(n) - 1. - _Giovanni Resta_, Aug 29 2018

%e 4224 belongs to this sequence as 4225 = 65^2.

%t palQ[n_] := Block[{d = IntegerDigits[n]}, d == Reverse[d]]; Select[Range[10000]^2 - 1, palQ] (* _Giovanni Resta_, Aug 29 2018 *)

%o (ARIBAS): stop := 400000; m := 1; while m < stop do s := m*m - 1; if s = int_reverse(s) then write(s," "); end; inc(m); end;

%Y Cf. A005563, A028503, A002779, A070253, A070254.

%K nonn,base

%O 1,2

%A _Patrick De Geest_

%E More terms from _Giovanni Resta_, Aug 28 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 09:18 EDT 2024. Contains 371935 sequences. (Running on oeis4.)