login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A370138
Arithmetic derivatives of the sums of three primorials > 1.
5
5, 7, 9, 21, 19, 21, 41, 33, 61, 123, 109, 111, 191, 165, 211, 459, 213, 361, 705, 951, 1361, 1319, 3537, 1173, 2195, 2479, 1481, 2111, 3295, 3421, 2313, 5415, 5885, 5891, 11091, 15019, 16371, 35067, 15033, 25061, 33373, 15123, 26057, 31309, 42955, 16691, 48573, 36329, 45845, 62385, 31167, 72201, 62123, 80969, 141399, 151113
OFFSET
1,1
COMMENTS
For n > 20, a(n) > A369979(n).
FORMULA
a(n) = A003415(A370137(n)).
PROG
(PARI)
up_to = 15180;
A002110(n) = prod(i=1, n, prime(i));
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A370137list(up_to) = { my(v = vector(up_to), i=0); for(x=1, oo, for(y=1, x, for(z=1, y, i++; if(i > up_to, return(v)); v[i] = A002110(x)+A002110(y)+A002110(z)))); (v); };
v370137 = A370137list(up_to);
A370137(n) = v370137[n];
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 09 2024
STATUS
approved