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.

A096999 A062401(x)=phi[sigma(x)] function is iterated; initial value=2^n; a(n)=largest term of trajectory.

Original entry on oeis.org

2, 6, 8, 30, 96, 126, 128, 480, 600, 3840, 2048, 8190, 10584, 27000, 32768, 196560, 311040, 851840, 1161216, 2250600, 2640704, 150992640, 150992640, 283740364800, 283740364800, 283740364800, 283740364800, 7608287232, 7608287232
Offset: 1

Views

Author

Labos Elemer, Jul 21 2004

Keywords

Examples

			n=8: 2^n=256, list={256,432,480,432,...}, max=a(8)=480
		

Crossrefs

Programs

  • Mathematica
    fs[x_] :=EulerPhi[DivisorSigma[1, x]] itef[x_, hos_] :=NestList[fs, x, hos] Table[Max[itef[2^w, 200]], {w, 1, 30}]