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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A257929 Primes equal to the sum of the prime factors, with multiplicity, of the next k numbers, for some k. 3
5, 19, 37, 139, 262880929, 1551042113, 64548518479, 1573353619909 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Values of k are 1, 2, 2, 3, 17, 10, 25, 51, ...
a(9) > 3*10^12. - Giovanni Resta, May 16 2015
LINKS
EXAMPLE
For 5, consider the prime factors of the next number, 6: 2, 3. Their sum is 2 + 3 = 5.
For 19, consider the prime factors of the next 2 numbers, 20, 21: 2, 2, 5; 3, 7. Their sum is 2 + 2 + 5 + 3 + 7 = 19.
MAPLE
with(numtheory): P:= proc(q) local a, d, j, k, n;
for n from 2 to q do if isprime(n) then a:=0; k:=0;
while a<n do k:=k+1; d:=ifactors(n+k)[2];
d:=add(d[j][1]*d[j][2], j=1..nops(d));
a:=a+d; od; if a=n then print(n);
fi; fi; od; end: P(10^9);
PROG
(PARI) sopfr(n) = my(f=factor(n)); sum(k=1, #f~, f[k, 1]*f[k, 2]);
isok(n) = {my(s = 0); my(k = 1); while (s < n, s += sopfr(n+k); k++); s == n; }
lista(nn) = {forprime(n=2, nn, if (isok(n), print1(n, ", ")); ); } \\ Michel Marcus, May 27 2015
CROSSREFS
Sequence in context: A285226 A146861 A068963 * A254060 A129828 A239831
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, May 13 2015
EXTENSIONS
a(6)-a(8) from Giovanni Resta, May 16 2015
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 August 30 06:30 EDT 2024. Contains 375530 sequences. (Running on oeis4.)