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!)
A066488 Composite numbers k which divide A001045(k-1). 2
341, 1105, 1387, 1729, 2047, 2465, 2701, 2821, 3277, 4033, 4369, 4681, 5461, 6601, 7957, 8321, 8911, 10261, 10585, 11305, 13741, 13747, 13981, 14491, 15709, 15841, 16705, 18721, 19951, 23377, 29341, 30121, 30889, 31417, 31609, 31621, 34945 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also composite numbers k such that (2^k - 2)/3 + 1 == 2^k - 1 == 1 (mod k).
An equivalent definition of this sequence: pseudoprimes to base 2 that are not divisible by 3. - Arkadiusz Wesolowski, Nov 15 2011
Conjecture: these are composites k such that 2^M(k-1) == -1 (mod M(k)^2 + M(k) + 1), where M(k) = 2^k - 1. - Amiram Eldar and Thomas Ordowski, Dec 19 2019
These are composites k such that 2^(m-1) == 1 (mod (m+1)^6 - 1), where m = 2^k - 1. - Thomas Ordowski, Sep 17 2023
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
a[0] = 0; a[1] = 1; a[n_] := a[n] = a[n - 1] + 2a[n - 2]; Select[ Range[50000], IntegerQ[a[ # - 1]/ # ] && !PrimeQ[ # ] && # != 1 & ]
fQ[n_] := ! PrimeQ@ n && Mod[((2^n - 2)/3 + 1), n] == Mod[2^n - 1, n] == 1; Select[ Range@ 35000, fQ]
PROG
(PARI) is(n)=n%3 && Mod(2, n)^(n-1)==1 && !isprime(n) && n>1 \\ Charles R Greathouse IV, Sep 18 2013
(Magma) [k:k in [4..40000]|not IsPrime(k) and ((2^(k-1) + (-1)^k) div 3) mod k eq 0]; // Marius A. Burtea, Dec 20 2019
CROSSREFS
Sequence in context: A172255 A087835 A271221 * A291601 A367319 A083876
KEYWORD
easy,nonn
AUTHOR
Robert G. Wilson v, Jan 03 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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)