login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A070253 Numbers n such that n^2 - 1 is a palindrome. 1
1, 2, 3, 10, 18, 24, 65, 76, 100, 192, 205, 1000, 1748, 1908, 2366, 2967, 5732, 10000, 18992, 20565, 100000, 174602, 174748, 179318, 243064, 293787, 552102, 1000000, 1868288, 2967033, 9200157, 10000000, 22765896, 31552660, 93809717, 100000000 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Every palindrome of the form n^2-1 is of the form m(m+2) (easy to prove by substituting n with m+1). In fact this is equal to A028503 + 1. - Patrick De Geest, May 09, 2002.

LINKS

P. De Geest, Palindromic quasipronic numbers of the form n(n+2)

MATHEMATICA

Do[ If[ a = IntegerDigits[n^2 - 1]; a == Reverse[a], Print[n]], {n, 1, 10^8/4}]

PROG

(PARI) intreverse(n)=local(d, rev); rev=0; while(n>0, d=divrem(n, 10); n=d[1]; rev=10*rev+d[2]); rev for(n=1, 100000000, q=n*n-1; if(q==intreverse(q), print1(n, ", ")))

CROSSREFS

Cf. A027719, A027720, A070254. Equals A028503 + 1.

Sequence in context: A192798 A143609 A066915 * A147673 A057507 A163467

Adjacent sequences:  A070250 A070251 A070252 * A070254 A070255 A070256

KEYWORD

base,nonn

AUTHOR

Amarnath Murthy (amarnath_murthy(AT)yahoo.com), May 06 2002

EXTENSIONS

Edited by Jason Earls (zevi_35711(AT)yahoo.com), Klaus Brockhaus (klaus-brockhaus(AT)t-online.de) and Robert G. Wilson v (rgwv(AT)rgwv.com), May 08 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 13:28 EST 2012. Contains 206031 sequences.