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.

A066616 a(1) = 1; a(n) = n*a(n-1) if n does not divide a(n-1), otherwise a(n) = a(n-1).

Original entry on oeis.org

1, 2, 6, 24, 120, 120, 840, 840, 7560, 7560, 83160, 83160, 1081080, 1081080, 1081080, 17297280, 294053760, 294053760, 5587021440, 5587021440, 5587021440, 5587021440, 128501493120, 128501493120, 3212537328000, 3212537328000
Offset: 1

Views

Author

Amarnath Murthy, Dec 24 2001

Keywords

Examples

			a(5) = 120; as 6 divides a(5), we have a(6) = a(5) = 120. Though 9 is not coprime to a(8) but still 9 does not divide a(8) so a(9) = 9 * a(8).
		

Crossrefs

Cf. A003418, A037992 (duplicates removed).
Replacing A059896 with A059897 in the formula gives A284567.

Programs

  • Mathematica
    nxt[{n_,a_}]:={n+1,If[Mod[a,n+1]==0,a,a(n+1)]}; NestList[nxt,{1,1},30][[All,2]] (* Harvey P. Dale, Jul 01 2022 *)
  • PARI
    { for (n=1, 200, if (n==1, a=1, if (a%n, a=n*a)); write("b066616.txt", n, " ", a) ) } \\ Harry J. Smith, Mar 12 2010

Formula

a(1) = 1; for n > 1, a(n) = A059896(a(n-1), n). - Peter Munn, Jul 12 2022

Extensions

More terms from Vladeta Jovovic, Dec 26 2001