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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 2, 4, 5, 9, 10, 18, 26, 34, 38, 45, 50, 57, 88, 108, 115, 161, 208, 224, 225, 238, 240, 264, 354, 597, 634, 984, 1008, 1080, 1468
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jun 15 2011

Keywords

Examples

			1 is a term because A191620(1) = A191751(1) = 0;
2 is a term because A191620(2) = A191751(2) = 1.
		

Crossrefs

Programs

  • Maple
    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:
    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:
    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

Formula

{k: A191620(k)=A191751(k)}.

Extensions

a(25)-a(30) from Jinyuan Wang, May 15 2020
Showing 1-1 of 1 results.