The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A083115 Palindromes in A083114. 3
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 111, 121, 131, 141, 151, 161, 171, 191, 212, 222, 313, 1111, 1221, 1331, 2112, 3113, 11111, 11211, 11311, 11411, 11511, 11711, 12121, 12221, 13131, 21112, 21212, 31113, 111111, 112211, 121121 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Intersection of A117056 and A052382. - Jayanta Basu, May 15 2013
LINKS
Charles R Greathouse IV and Chai Wah Wu, Table of n, a(n) for n = 1..2002 (n = 1..59 from Charles R Greathouse IV)
FORMULA
a(n) >> 3^n. - Charles R Greathouse IV, May 15 2013
MATHEMATICA
id[n_]:=IntegerDigits[n]; palQ[n_]:=Reverse[x=id[n]]==x; t={}; Do[If[palQ[n] && (y=Times@@id[n])>0 && palQ[Plus@@id[n]] && palQ[y], AppendTo[t, n]], {n, 125000}]; t (* Jayanta Basu, May 15 2013 *)
spQ[n_]:=Module[{idn=IntegerDigits[n]}, FreeQ[idn, 0]&&AllTrue[ {n, Total[ idn], Times@@idn}, PalindromeQ]]; Select[Range[125000], spQ] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jan 30 2021 *)
PROG
(PARI) ispal(n)=n=digits(n); for(i=1, #n\2, if(n[i]!=n[#n+1-i], return(0))); 1
is(n)=my(d=vecsort(digits(n))); d[1]&&ispal(sum(i=1, #d, d[i]))&&ispal(prod(i=1, #d, d[i]))&&ispal(n) \\ Charles R Greathouse IV, May 15 2013
CROSSREFS
Cf. A083114.
Sequence in context: A117055 A117056 A082207 * A266280 A250412 A201060
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Apr 23 2003
STATUS
approved

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 June 12 18:57 EDT 2024. Contains 373360 sequences. (Running on oeis4.)