login

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

A068483
Numbers n such that gcd(n!-1,2^n-1)>1.
5
11, 15, 35, 75, 83, 111, 119, 135, 155, 179, 219, 231, 243, 323, 359, 375, 455, 459, 483, 491, 515, 519, 525, 531, 551, 611, 615, 639, 651, 663, 699, 719, 723, 735, 771, 779, 783, 803, 879, 915, 923, 939, 999, 1043, 1103, 1119, 1175, 1199, 1271, 1323
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[2500], GCD[#! - 1, 2^# - 1] > 1 &] (* G. C. Greubel, Oct 15 2018 *)
PROG
(PARI) isok(n) = gcd(n!-1, 2^n-1) > 1; \\ Michel Marcus, Oct 16 2018
CROSSREFS
Cf. A000225 (2^n-1), A033312 (n!-1).
Sequence in context: A373610 A097512 A032490 * A357626 A241679 A219389
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Mar 10 2002
STATUS
approved