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!)
A132285 Mirror odd numbers. 4

%I #13 Apr 19 2014 12:43:06

%S 11,33,55,77,99,1001,1111,1221,1331,1441,1551,1661,1771,1881,1991,

%T 3003,3113,3223,3333,3443,3553,3663,3773,3883,3993,5005,5115,5225,

%U 5335,5445,5555,5665,5775,5885,5995,7007,7117,7227,7337,7447,7557,7667,7777,7887

%N Mirror odd numbers.

%C Mirror numbers have even number of digits with property that left half digits is mirror of right half digits.

%H Vincenzo Librandi, <a href="/A132285/b132285.txt">Table of n, a(n) for n = 1..555</a>

%F A005408 INTERSECT A001637 INTERSECT A002113. - _R. J. Mathar_, Aug 22 2007

%t monQ[n_]:=Module[{len=IntegerLength[n],idn=IntegerDigits[n]},EvenQ[ len] &&Take[idn,len/2]==Reverse[Take[idn,-len/2]]]; Select[Range[11,9999,2], monQ] (* _Harvey P. Dale_, Apr 18 2014 *)

%o (PARI) isok(n) = {if (n % 2 == 0, return (0)); d = digits(n); if (#d % 2 == 1, return (0)); for (i=1, #d/2, if (d[i] != d[#d-i+1], return (0));); return (1);} \\ _Michel Marcus_, Nov 05 2013

%Y Cf. A005408, A001637, A002113, A132286, A132288.

%K nonn,base

%O 1,1

%A _Artur Jasinski_, Aug 16 2007

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)