login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A353002 Numbers k such that the k-th triangular number mod the sum (with multiplicity) of prime factors of k, and the k-th triangular number mod the sum of divisors of k, are the same prime. 0
93, 2653, 30433, 1922113, 15421122, 28776673, 240409057, 611393953, 2713190397, 5413336381 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(1) = 93 is a term because 93*94/2 = 4371, A000217(93) = 128, A001414(93) = 34, and 4371 mod 128 = 4371 mod 34 = 19, which is prime.
MAPLE
filter:= proc(n) local a, b, c, t;
a:= n*(n+1)/2;
b:= add(t[1]*t[2], t=ifactors(n)[2]);
t:= a mod b; if not isprime(t) then return false fi;
c:= numtheory:-sigma(n);
a mod c = t
end proc:
select(filter, [$2..2*10^7]);
MATHEMATICA
Select[Range[2*10^6], (r = Mod[#*(# + 1)/2, DivisorSigma[1, #]]) == Mod[#*(# + 1)/2, Plus @@ Times @@@ FactorInteger[#]] && PrimeQ[r] &] (* Amiram Eldar, Apr 15 2022 *)
CROSSREFS
Sequence in context: A250373 A250374 A146125 * A017809 A017756 A246991
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Apr 15 2022
EXTENSIONS
a(8) from Amiram Eldar, Apr 15 2022
a(9)-a(10) from Daniel Suteu, May 12 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified December 2 16:47 EST 2023. Contains 367525 sequences. (Running on oeis4.)