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.

A320041 Primes that are values of A215240.

Original entry on oeis.org

3, 13, 6163, 8311, 12097, 13159, 14957, 18433, 21061, 23627, 24571, 27061, 29863, 35617, 40897, 44221, 45307, 45737, 45821, 67421, 68113, 69313, 71237, 75377, 82903, 89227, 89269, 89671, 94543, 100483, 101533, 101833, 113683, 114827, 118903, 121763, 122167, 125933, 131581, 131617, 143461, 144061
Offset: 1

Views

Author

Robert Israel and J. M. Bergot, Oct 03 2018

Keywords

Comments

Values of A215240(A320061), sorted.

Examples

			a(3) = 6163 is in the sequence because it is prime and A215240(264) = 6163.
		

Crossrefs

Programs

  • Maple
    N:= 10^5: # to get all terms <= N
    f:= n -> convert(numtheory:-invphi(n),`+`):
    Res:= {}:
    for n from 1 to N do
      v:= f(n);
      if isprime(v) and v <= N then
         Res:= Res union {v}
      fi
    od:
    Res;
Showing 1-1 of 1 results.