OFFSET
0,3
COMMENTS
Arithmetic derivative of the product of first n odd primes. - Antti Karttunen, Jan 31 2024
Primes occur at indices: 3, 19, 23, 117, 119, 127, 161, 209, ..., and they are: 71, 346723099672193960193396979, 15360643606799479140185671512081451, ... - Antti Karttunen, Feb 06 2024
LINKS
Antti Karttunen, Table of n, a(n) for n = 0..349
FORMULA
MATHEMATICA
f[k_] := Prime[k + 1]; t[n_] := Table[f[k], {k, 1, n}]
a[n_] := SymmetricPolynomial[n - 1, t[n]]
Table[a[n], {n, 1, 16}] (* A203008 *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Dec 29 2011
EXTENSIONS
Term a(0) = 0 prepended by Antti Karttunen, Jan 31 2024
STATUS
approved