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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A075808 Palindromic odd composite numbers with an odd number of distinct prime factors. 0
555, 595, 777, 969, 1001, 1221, 1551, 1771, 3333, 3553, 5335, 5555, 5665, 5885, 5995, 7337, 7557, 7667, 7777, 7887, 9339, 9669, 9779, 9889, 11211, 11811, 12121, 12621, 12921, 13731, 14241, 14541, 15051, 15951, 16261, 16761, 17171, 18381 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

555=3*5*37, 595=5*7*17 and 777=3*7*37 are palindromic, odd, composite and products of an odd number of distinct primes.

MAPLE

test := proc(n) local d; d := convert(n, base, 10); return ListTools[Reverse](d)=d and numtheory[mobius](n)=-1 and not isprime(n); end; a := []; for n from 1 to 30000 by 2 do if test(n) then a := [op(a), n]; end; od; a;

CROSSREFS

Cf. A046389.

Sequence in context: A045046 A205888 A186529 * A204365 A043511 A104809

Adjacent sequences:  A075805 A075806 A075807 * A075809 A075810 A075811

KEYWORD

nonn,base

AUTHOR

Jani Melik (jani_melik(AT)hotmail.com), Oct 13 2002

EXTENSIONS

Edited by Dean Hickerson (dean.hickerson(AT)yahoo.com), Oct 21 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 05:54 EST 2012. Contains 205985 sequences.