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.

User: Alessandro Gambini

Alessandro Gambini's wiki page.

Alessandro Gambini has authored 1 sequences.

A332399 Minimum positive value of p_1*...*p_n*(s_1/p_1 + ... + s_n/p_n), where each s_i equals 1 or -1 and p_i is the i-th prime number.

Original entry on oeis.org

1, 1, 1, 23, 43, 251, 263, 21013, 1407079, 4919311, 818778281, 2402234557, 379757743297, 3325743954311, 54237719914087, 903944329576111, 46919460458733911, 367421942920402841, 17148430651130576323, 1236225057834436760243, 4190310920096832376289, 535482916756698482410061
Offset: 1

Author

Alessandro Gambini, Feb 11 2020

Keywords

Examples

			(2*3*5*7)*(1/2 - 1/3 - 1/5 + 1/7) = (210)*(23/210) = 23, so a(4) = 23.
		

Crossrefs

Cf. A061194 (with integers), A024530.

Programs

  • Mathematica
    a[n_] := Block[{p = Prime@ Range@ n}, Min@ Abs[{1/p}.Transpose@ Tuples[{-1, 1}, n]] Times @@ p]; Array[a, 16] (* Giovanni Resta, Feb 11 2020 *)