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.

A124740 a(n) = product of those positive integers which are coprime to both n and n+1 and which are <= n.

Original entry on oeis.org

1, 1, 1, 3, 1, 5, 15, 35, 7, 189, 35, 385, 1485, 143, 1001, 2027025, 5005, 85085, 459459, 46189, 20995, 1249937325, 1616615, 7436429, 324342711, 71504125, 132793375, 1452095555625, 7436429, 215656441, 6190283353629375, 75969882625
Offset: 1

Views

Author

Leroy Quet, Nov 06 2006

Keywords

Examples

			The positive integers which are coprime to 8 and which are <= 8 are 1,3,5,7. The positive integers which are coprime to 9 and which are <= 9 are 1, 2,4,5,7,8. The integers in both these sequences (1,5,7) are multiplied to get a(8) = 35.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := Times @@ Select[Range[n], GCD[n, # ] == GCD[n + 1, # ] == 1 &];Table[f[n], {n, 33}] (* Ray Chandler, Nov 10 2006 *)

Extensions

Extended by Ray Chandler, Nov 10 2006