cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A068892 Incorrect version of A085869.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 17, 22, 26, 31, 33, 37, 39, 44, 51, 55, 62, 66, 71
Offset: 0

Views

Author

Keywords

A068893 Nonpalindromic numbers that have the same prime signature as their digit reversal.

Original entry on oeis.org

13, 15, 17, 26, 31, 37, 39, 51, 58, 62, 71, 73, 79, 85, 93, 97, 107, 113, 115, 117, 122, 123, 129, 143, 149, 155, 157, 158, 159, 165, 167, 169, 177, 178, 179, 183, 185, 187, 199, 203, 205, 221, 226, 246, 265, 285, 286, 294, 302, 311, 314, 319, 321, 326, 327
Offset: 1

Views

Author

Amarnath Murthy, Mar 20 2002

Keywords

Examples

			15 is a term since 15 = 3*5 and 51 = 3*17, and both are of the form p*q where p and q are primes.
		

Crossrefs

Subsequence of A085869.

Programs

  • Mathematica
    sig[n_] := Sort @ FactorInteger[n][[;;,2]]; Select[Range[300], !PalindromeQ[#] && sig[#] == sig[IntegerReverse[#]] &] (* Amiram Eldar, Dec 30 2020 *)

Extensions

More terms from David Wasserman, Apr 19 2005
Offset corrected by Amiram Eldar, Dec 30 2020

A087093 Numbers that have the same number of divisors as their digit reversal, but with different prime signatures.

Original entry on oeis.org

24, 42, 264, 288, 462, 658, 856, 882, 1071, 1128, 1314, 1464, 1701, 2058, 2130, 2132, 2312, 2324, 2424, 2510, 2590, 2616, 2664, 2744, 2765, 2782, 2786, 2872, 2904, 2938, 2975, 3159, 3194, 4010, 4090, 4092, 4094, 4125, 4131, 4136, 4168, 4184, 4220, 4228
Offset: 1

Views

Author

Ray Chandler, Aug 09 2003

Keywords

Comments

Terms in A062895 but not in A085869.

Examples

			24 and 42 are members as 24 and 42 each have 8 divisors but with different prime signatures.
		

Crossrefs

Programs

  • Mathematica
    psQ[n_]:=Sort[Transpose[FactorInteger[n]][[2]]]!=Sort[Transpose[ FactorInteger[FromDigits[Reverse[IntegerDigits[n]]]]][[2]]];ndQ[n_]:= DivisorSigma[0,n]==DivisorSigma[0,FromDigits[Reverse[ IntegerDigits[ n]]]]; Select[Range[5000],psQ[#]&&ndQ[#]&] (* Harvey P. Dale, Nov 11 2011 *)

A087305 Smallest n-digit non-palindromic number such that it and its digit reversal have the same prime signature.

Original entry on oeis.org

13, 107, 1002, 10002, 100006, 1000007, 10000013, 100000005, 1000000007, 10000000006, 100000000007, 1000000000006, 10000000000003, 100000000000002, 1000000000000003, 10000000000000002, 100000000000000005, 1000000000000000005, 10000000000000000021, 100000000000000000031
Offset: 2

Views

Author

Amarnath Murthy, Sep 02 2003

Keywords

Examples

			a(6) = 100006 = 2*13*1613 and 600001 = 19*23*1373 both have prime signature p*q*r, p,q,r are primes.
		

Crossrefs

Programs

  • PARI
    rev(n) = fromdigits(Vecrev(digits(n)));
    psig(n) = vecsort(factor(n)[,2]~);
    a(n) = {my(k = 10^n+1); while(k == rev(k) || psig(k) != psig(rev(k)), k++); k;} \\ Amiram Eldar, May 19 2024

Extensions

More terms from David Wasserman, Apr 19 2005
More terms from Amiram Eldar, May 19 2024
Showing 1-4 of 4 results.