|
| |
|
|
A086806
|
|
Sarrus numbers n such that n-1 and n+1 have the same number of prime divisors (counted with multiplicity).
|
|
0
| |
|
|
341, 13747, 19951, 35333, 60787, 137149, 150851, 387731, 458989, 617093, 769757, 1104349, 1251949, 1277179, 1397419, 1463749, 1507963, 1826203, 2134277, 2205967, 2617451, 2976487, 3345773, 4361389, 6474691, 6955541, 8095447
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,1
|
|
|
EXAMPLE
| 341 is a pseudo-prime to base 2 while 340 = 2^2*5*17 and 342 = 2*3^2*19 each have four primes dividing them.
|
|
|
MATHEMATICA
| PrimeFactorExponentsAdded[n_] := Plus @@ Flatten[ Table[ # [[2]], {1}] & /@ FactorInteger[n]]; Select[ Range[9224390], !PrimeQ[ # ] && PowerMod[2, # - 1, # ] == 1 && PrimeFactorExponentsAdded[ # - 1] == PrimeFactorExponentsAdded[ # + 1] & ]
|
|
|
CROSSREFS
| Cf. A001222, A001567.
Sequence in context: A143688 A086250 A069309 * A006107 A015371 A163582
Adjacent sequences: A086803 A086804 A086805 * A086807 A086808 A086809
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Jason Earls (zevi_35711(AT)yahoo.com), Aug 05 2003
|
|
|
EXTENSIONS
| More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Aug 13 2003
|
| |
|
|