[go: up one dir, main page]

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”).

A343225
Primitive terms of A343218. Numbers k such that A343220(k) = 1.
2
3, 7, 10, 11, 17, 19, 20, 23, 26, 27, 29, 31, 32, 40, 43, 45, 47, 52, 53, 59, 65, 67, 71, 72, 74, 79, 80, 82, 83, 89, 98, 103, 104, 107, 117, 122, 125, 127, 128, 131, 139, 146, 148, 149, 151, 162, 163, 164, 167, 179, 185, 191, 194, 196, 197, 199, 200, 202, 205, 208, 211, 218, 223, 226, 227, 233, 239, 243, 244, 245, 251
OFFSET
1,1
COMMENTS
For any term x, and for any y > 0, if gcd(x,y) = 1, then x*y is included in A343218.
PROG
(PARI)
A003415(n) = if(n<=1, 0, my(f=factor(n)); n*sum(i=1, #f~, f[i, 2]/f[i, 1]));
A343219(n) = (A003415(sigma(n))>n);
A343220(n) = sumdiv(n, d, if(1==gcd(d, n/d), A343219(d), 0));
isA343225(n) = (1==A343220(n));
CROSSREFS
Positions of 1's in A343220.
Subsequence of A343218.
Sequence in context: A226934 A238506 A308169 * A363245 A276117 A105135
KEYWORD
nonn
AUTHOR
Antti Karttunen, Apr 09 2021
STATUS
approved