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.

A233467 Numbers n such that sigma(n) = reversal(3n).

Original entry on oeis.org

14, 134, 164, 1333334, 133333334, 929247534, 1333333334, 133333333334
Offset: 1

Views

Author

Farideh Firoozbakht, Mar 14 2014

Keywords

Comments

If m is a natural number and p=(2*10^m+1)/3 is prime then 2*p is in the sequence (see A096507).
a(9) > 10^12. - Giovanni Resta, Mar 15 2014

Examples

			sigma(14)=24=reversal(42)=reversal(3*14).
		

Crossrefs

Programs

  • Mathematica
    rev[n_] := FromDigits@ Reverse@ IntegerDigits@n; Select[Range[2*10^6], DivisorSigma[1, #] == rev[3*#] &] (* Giovanni Resta, Mar 15 2014 *)

Extensions

a(6)-a(8) from Giovanni Resta, Mar 15 2014