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!)
A075810 Palindromic odd squarefree numbers with an even number of distinct prime factors. 0
1, 33, 55, 77, 111, 141, 161, 303, 323, 393, 505, 515, 535, 545, 565, 707, 717, 737, 767, 939, 949, 959, 979, 989, 1111, 1441, 1661, 1991, 3003, 3113, 3223, 3443, 3883, 5005, 5115, 7117, 7447, 7997, 9119, 9229, 9449, 10001, 10101, 10401, 10801, 10901 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
77=7*11 and 3003=3*7*11*13 are palindromic, odd, squarefree and have an even number of prime factors.
MAPLE
test := proc(n) local d; d := convert(n, base, 10); return ListTools[Reverse](d)=d and numtheory[mobius](n)=1; end; a := []; for n from 1 to 11000 by 2 do if test(n) then a := [op(a), n]; end; od; a;
MATHEMATICA
psdQ[n_]:=Module[{idn=IntegerDigits[n]}, idn==Reverse[idn]&&SquareFreeQ[n] && EvenQ[PrimeNu[n]]]; Select[Range[1, 11001, 2], psdQ] (* Harvey P. Dale, Aug 21 2011 *)
CROSSREFS
Cf. A056913.
Sequence in context: A242957 A024628 A061864 * A132288 A242605 A351396
KEYWORD
nonn,base
AUTHOR
Jani Melik, Oct 13 2002
EXTENSIONS
Edited by Dean Hickerson, Oct 21 2002
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 April 16 17:00 EDT 2024. Contains 371749 sequences. (Running on oeis4.)