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!)
A229550 Numbers n with nonzero digits such that n*(product of digits of n) is a palindrome. 2
1, 2, 3, 11, 19, 22, 35, 37, 77, 111, 115, 116, 121, 131, 212, 464, 671, 731, 1111, 1221, 1229, 2112, 4136, 4147, 6346, 9832, 11111, 11151, 11161, 11211, 11311, 12121, 12477, 12692, 12734, 17951, 18619, 21112, 22622 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
4136*(4*1*3*6) = 297792 (a palindrome). So, 4136 is a member of this sequence.
PROG
(Python)
def ispal(n):
..r = ''
..for i in str(n):
....r = i + r
..return n == int(r)
def DP(n):
..p = 1
..for i in str(n):
....p *= int(i)
..return p
{print(n, end=', ') for n in range(10**4) if DP(n) and ispal(n*DP(n))}
## Simplified by Derek Orr, Apr 10 2015
(PARI) ispal(n)=n=digits(n); n==Vecrev(n)
dprod(n)=n=digits(n); prod(i=1, #n, n[i])
is(n)=my(d=dprod(n)); d && ispal(d*n) \\ Charles R Greathouse IV, Apr 30 2014
CROSSREFS
Cf. A007954.
Sequence in context: A257979 A365374 A095984 * A172258 A306395 A363497
KEYWORD
nonn,base
AUTHOR
Derek Orr, Sep 26 2013
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 March 28 12:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)