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!)
A226038 Numbers n such that there are no primes p which divide n+1 and p-1 does not divide n. 3

%I #19 Feb 28 2020 03:37:01

%S 0,1,2,3,4,6,7,8,10,12,15,16,18,22,24,26,28,30,31,36,40,42,44,46,48,

%T 52,58,60,63,66,70,72,78,80,82,88,96,100,102,106,108,112,120,124,126,

%U 127,130,136,138,148,150,156,162,166,168,172,178,180,190,192,196,198

%N Numbers n such that there are no primes p which divide n+1 and p-1 does not divide n.

%C These are the numbers which satisfy the weak Clausen condition but not the Clausen condition.

%H Ivan Neretin, <a href="/A226038/b226038.txt">Table of n, a(n) for n = 1..10000</a>

%H Peter Luschny, <a href="http://www.luschny.de/math/euler/GeneralizedBernoulliNumbers.html">Generalized Bernoulli numbers</a>.

%e A counterexample is n = 14. 5 divides 15 but 4 does not divide 14.

%p s := (p,n) -> ((n+1) mod p = 0) and (n mod (p-1) <> 0);

%p F := n -> select(p -> s(p,n), select('isprime', [$2..n]));

%p A226038_list := n -> select(k -> [] = F(k), [$0..n]);

%p A226038_list(200);

%t s[p_, n_] := Mod[n+1, p] == 0 && Mod[n, p-1] != 0; f[n_] := Select[ Select[ Range[n], PrimeQ], s[#, n] &]; A226038 = Select[ Range[0, 200], f[#] == {} &] (* _Jean-François Alcover_, Jul 29 2013, after Maple *)

%t Join[{0}, Select[Range[200], And @@ Divisible[#, FactorInteger[# + 1][[All, 1]] - 1] &]] (* _Ivan Neretin_, Aug 04 2016 *)

%o (Sage)

%o def F(n): return filter(lambda p: ((n+1) % p == 0) and (n % (p-1) != 0), primes(n))

%o def A226038_list(n): return list(filter(lambda n: not list(F(n)), (0..n)))

%o A226038_list(200)

%Y Cf. A226039, A226040, A225481.

%K nonn

%O 1,3

%A _Peter Luschny_, May 27 2013

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 19 07:38 EDT 2024. Contains 371782 sequences. (Running on oeis4.)