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!)
A067335 Numbers k such that prime(k+1)-(k+1)*tau(k+1) = prime(k-1)-(k-1)*tau(k-1) where tau(k) = A000005(k) is the number of divisors of k. 5
202, 216, 471, 583, 816, 850, 894, 905, 922, 1277, 1335, 1386, 1594, 1712, 1774, 1942, 1958, 2554, 2760, 2777, 2840, 2876, 2934, 2944, 3132, 3438, 3566, 3694, 3900, 3980, 4013, 4188, 4342, 4352, 4526, 4594, 4627, 4686, 4808, 5268, 5730, 6032, 6326 (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[2, 6500], f[#+1] == f[#-1] &] (* Amiram Eldar, Apr 08 2024 *)
PROG
(PARI) f(n) = prime(n) - n * numdiv(n);
is(n) = n > 1 && f(n+1) == f(n-1); \\ Amiram Eldar, Apr 08 2024
CROSSREFS
Sequence in context: A216376 A166505 A066130 * A356881 A235082 A260280
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 April 24 10:10 EDT 2024. Contains 371935 sequences. (Running on oeis4.)