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!)
A067355 Numbers k such that prime(k+3)-(k+3)*tau(k+3) = prime(k-3)-(k-3)*tau(k-3) where tau(k) = A000005(k) is the number of divisors of k. 5
11, 47, 335, 373, 571, 1242, 1307, 1663, 3013, 3225, 3552, 4074, 4379, 4459, 4939, 5353, 5760, 5915, 6569, 7099, 7524, 7752, 8286, 8934, 9531, 10069, 10405, 10724, 10878, 11850, 13152, 13853, 14742, 15317, 15381, 15804, 17664, 17890, 18054 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
f[n_] := f[n] = Prime[n] - n * DivisorSigma[0, n]; Select[Range[4, 20000], f[#+3] == f[#-3] &] (* Amiram Eldar, Apr 08 2024 *)
PROG
(PARI) f(n) = prime(n) - n * numdiv(n);
is(n) = n > 3 && f(n+3) == f(n-3); \\ Amiram Eldar, Apr 08 2024
CROSSREFS
Sequence in context: A141282 A336181 A354590 * A138362 A191499 A072372
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Feb 24 2002
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 July 5 19:07 EDT 2024. Contains 374028 sequences. (Running on oeis4.)