cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A191001 Indices k where A191620(k) = A191751(k).

This page as a plain text file.
%I A191001 #20 May 15 2020 04:38:05
%S A191001 1,2,4,5,9,10,18,26,34,38,45,50,57,88,108,115,161,208,224,225,238,240,
%T A191001 264,354,597,634,984,1008,1080,1468
%N A191001 Indices k where A191620(k) = A191751(k).
%F A191001 {k: A191620(k)=A191751(k)}.
%e A191001 1 is a term because A191620(1) = A191751(1) = 0;
%e A191001 2 is a term because A191620(2) = A191751(2) = 1.
%p A191001 A191751 := proc(n) local k; for k from 0 do if isprime((2^n-1)*2^n-k) then return k: end if : end do: end proc:
%p A191001 A191620 := proc(n) local k: for k from 0 do if isprime((2^n-k)*2^n-1) then return k: end if: end do: end proc:
%p A191001 for n from 1 do if A191751(n) = A191620(n) then printf("%d,\n",n); end if; end do: # _R. J. Mathar_, Jun 25 2011
%Y A191001 Cf. A191620, A191751.
%K A191001 nonn,less,more
%O A191001 1,2
%A A191001 _Juri-Stepan Gerasimov_, Jun 15 2011
%E A191001 a(25)-a(30) from _Jinyuan Wang_, May 15 2020