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!)
A290281 Numbers k such that (k-1) mod phi(k) = lambda(k), where phi = A000010 and lambda = A002322. 1

%I #53 Apr 22 2024 14:28:39

%S 6601,11972017,34657141,67902031,139952671,258634741,2000436751,

%T 8801128801,9116583841,9462932431,38069223721,326170416001,

%U 359316634951,1860929324101,2022188518351,2283475947391,2648686458601,2697891108151,4513362899761,5020030521001,5472940991761,6163867710001,7507903975951,19288340548471

%N Numbers k such that (k-1) mod phi(k) = lambda(k), where phi = A000010 and lambda = A002322.

%C Numbers k such that A215486(k) = A002322(k).

%C Subsequence of the Carmichael numbers (A002997).

%C Composite numbers k such that (k-1) == lambda(k) (mod phi(k)).

%C Composite numbers k such that A277127(k) == 1 (mod A000010(k)).

%C Problem: are there infinitely many such numbers?

%C Conjecture: these are numbers k such that phi(k) + lambda(k) = k - 1. Checked up to 2^64. - _Amiram Eldar_ and _Thomas Ordowski_, Dec 06 2019

%H Amiram Eldar, <a href="/A290281/b290281.txt">Table of n, a(n) for n = 1..239</a> (terms below 10^22 calculated using data from Claude Goutier; terms 1..79 from Robert Israel)

%H Claude Goutier, <a href="http://www-labs.iro.umontreal.ca/~goutier/OEIS/A055553/">Compressed text file carm10e22.gz containing all the Carmichael numbers up to 10^22</a>.

%H <a href="/index/Ca#Carmichael">Index entries for sequences related to Carmichael numbers</a>.

%p # Using data files for A002997

%p count:= 0:

%p for cfile in ["carmichael-16","carmichael17","carmichael18"] do

%p do

%p S:= readline(cfile);

%p if S = 0 then break fi;

%p L:= map(parse, StringTools:-Split(S));

%p n:= L[1]; pm:= map(`-`,L[2..-1],1);

%p phin:= convert(pm,`*`);

%p lambdan:= ilcm(op(pm));

%p if n-1 - lambdan mod phin = 0 then

%p count:= count+1; A[count]:= n;

%p fi

%p od:

%p fclose(cfile);

%p od:

%p seq(A[i],i=1..count); # _Robert Israel_, Jul 26 2017

%t Select[Range[10^8], Divisible[# - 1, (lam = CarmichaelLambda[#])] && Mod[# - 1, EulerPhi[#]] == lam &] (* _Amiram Eldar_, Dec 06 2019 *)

%Y Cf. A000010, A002322, A002997, A215486.

%Y Subsequence of A264012.

%K nonn,changed

%O 1,1

%A _Robert Israel_ and _Thomas Ordowski_, Jul 25 2017

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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)