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.

A083447 a(n) = floor( n*R(n)/(n+R(n))), where R(n) is the digit reversal of n (A004086).

Original entry on oeis.org

1, 1, 2, 2, 3, 3, 4, 4, 0, 5, 7, 9, 10, 11, 12, 13, 14, 15, 1, 7, 11, 13, 15, 16, 18, 19, 20, 22, 2, 9, 13, 16, 18, 21, 22, 24, 26, 27, 3, 10, 15, 18, 22, 24, 26, 28, 30, 32, 4, 11, 16, 21, 24, 27, 30, 32, 34, 36, 5, 12, 18, 22, 26, 30, 33, 35, 37, 40, 6, 13, 19, 24, 28, 32, 35, 38, 41
Offset: 2

Views

Author

Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 01 2003

Keywords

Examples

			a(17) = floor(17*71/(17+71)) = floor(1207/88) = 13.
		

Crossrefs

Cf. A004086.

Programs

  • Mathematica
    drev[n_]:=Module[{dr=FromDigits[Reverse[IntegerDigits[n]]]},Floor[ (dr*n)/ (dr+n)]]; Array[drev,80,2] (* Harvey P. Dale, Apr 26 2014 *)

Extensions

More terms from Jason Earls, May 23 2004