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.

Showing 1-2 of 2 results.

A280246 a(n) = Product_{d|n} psi(d), where psi(m) is the sum of totatives of m (A023896).

Original entry on oeis.org

1, 1, 3, 4, 10, 18, 21, 64, 81, 200, 55, 1728, 78, 882, 1800, 4096, 136, 26244, 171, 64000, 7938, 6050, 253, 2654208, 2500, 12168, 19683, 592704, 406, 25920000, 465, 1048576, 54450, 36992, 88200, 544195584, 666, 58482, 109512, 327680000, 820, 504094752, 903
Offset: 1

Views

Author

Jaroslav Krizek, Dec 30 2016

Keywords

Comments

a(n) = n only for n = 1, 3 and 4.
n divides a(n) for all n except 2.
Conjecture: a(n) is odd iff the sum of totatives of n (A023896) is odd.

Examples

			For n=6; sets of totatives of divisors of 6: {1}, {1}, {1, 2}, {1, 5}; a(6) = 1*1*(1+2)*(1+5) = 18.
		

Crossrefs

Programs

  • Magma
    [&*[&+[h: h in [1..d] | GCD(h,d) eq 1]: d in Divisors(n)]: n in [1..100]]
  • Mathematica
    Table[Product[Total@ Select[Range@ d, CoprimeQ[d, #] &], {d, Divisors@ n}], {n, 43}] (* Michael De Vlieger, Dec 30 2016 *)

Formula

a(n) = Product_{d|n} A023896(d).

A280248 Partial products of A280246 (Product_{d|n} psi(d)).

Original entry on oeis.org

1, 1, 3, 12, 120, 2160, 45360, 2903040, 235146240, 47029248000, 2586608640000, 4469659729920000, 348633458933760000, 307494710779576320000, 553490479403237376000000, 2267097003635660292096000000, 308325192494449799725056000000
Offset: 1

Views

Author

Jaroslav Krizek, Dec 30 2016

Keywords

Comments

psi(n) is the sum of totatives of n (A023896).

Crossrefs

Programs

  • Magma
    [&*[&*[&+[h: h in [1..d] | GCD(h,d) eq 1]: d in Divisors(k)]: k in [1..n]]: n in [1..100]]
  • Mathematica
    FoldList[#1 #2 &, Table[Product[Total@ Select[Range@ d, CoprimeQ[d, #] &], {d, Divisors@ n}], {n, 17}]] (* Michael De Vlieger, Dec 30 2016 *)

Formula

a(n) = Product_{i=1..n} A280246(i).
Showing 1-2 of 2 results.