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.

A335334 Sum of the integers in the reduced residue system of A002110(n).

Original entry on oeis.org

1, 6, 120, 5040, 554400, 86486400, 23524300800, 8045310873600, 4070927302041600, 3305592969257779200, 3074201461409734656000, 4094836346597766561792000, 6715531608420337161338880000, 12128250084807128913378017280000
Offset: 1

Views

Author

Jamie Morken, Jun 02 2020

Keywords

Comments

Sum of the integers up to A002110(n) and coprime to A002110(n).
The sequence gives the sum of row n of A286941(n).

Examples

			For n = 3: A002110(3) = 30, the reduced residue system of 30 is {1, 7, 11, 13, 17, 19, 23, 29}. The sum is a(3) = 120.
		

Crossrefs

Programs

  • Mathematica
    n = 15;
    A002110 = Drop[FoldList[Times, 1, Prime[Range[n]]], 1];
    A005867 = Drop[EulerPhi@FoldList[Times, 1, Prime@Range@n], 1];
    A002110*A005867/2
    (* Second program: *)
    Map[# EulerPhi[#]/2 &, FoldList[Times, Prime@ Range@ 14]] (* Michael De Vlieger, Apr 07 2021 *)
  • PARI
    a(n) = my(P=factorback(primes(n))); P*eulerphi(P)/2; \\ Michel Marcus, Jun 02 2020

Formula

a(n) = A023896(A002110(n)).
a(n) = A002110(n)*A005867(n)/2 = A070826(n)*A005867(n).
a(n) = (A002110(n)*A038110(n+1)/2)*A058250(n).