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-3 of 3 results.

A163431 Primes p such that floor(p^3/8) is also prime.

Original entry on oeis.org

3, 19, 83, 179, 191, 239, 373, 431, 643, 719, 739, 883, 1123, 1151, 1171, 1237, 1283, 1429, 1459, 1669, 1811, 2053, 2083, 2293, 2351, 2437, 2579, 2677, 2687, 2819, 2851, 2879, 3167, 3253, 3491, 3539, 3877, 4051, 4099, 4483, 4549, 4643, 4799, 5087, 5171
Offset: 1

Views

Author

Keywords

Examples

			a(1)=3 generates 3^3/8=3.375 where 3 is prime.
a(2)=19 generates 19^3/8=857.375 where 857 is prime.
		

Programs

  • Mathematica
    f[n_]:=IntegerPart[(p/2)^3]; lst={};Do[p=Prime[n];If[PrimeQ[f[p]],AppendTo[lst, p]],{n,7!}];lst

Formula

A163430(n) = floor( a(n)^3/8 ).

Extensions

Mathematica specific notation removed, comments moved to examples - R. J. Mathar, Sep 17 2009

A163442 Primes of the form floor((p/3)^3), where p is prime.

Original entry on oeis.org

181, 1103, 40471, 143329, 212419, 266261, 468493, 14586401, 20948491, 48894061, 53298877, 86546399, 136061111, 150851969, 189448891, 227353303, 249650309, 256855171, 328033129, 361451309, 507533053, 710528249, 815653171, 1172016731
Offset: 1

Views

Author

Keywords

Examples

			(17/3)^3=181.963 -> 181, (31/3)^3=1103.37 -> 1103, (103/3)^3=40471.4 -> 40471
		

Crossrefs

Programs

  • Mathematica
    f[n_]:=IntegerPart[(p/3)^3]; lst={};Do[p=Prime[n];If[PrimeQ[f[p]],AppendTo[lst,f[p]]],{n,7!}];lst
    Select[Table[Floor[(p/3)^3],{p,Prime[Range[800]]}],PrimeQ] (* Harvey P. Dale, Dec 16 2017 *)
  • PARI
    forprime(p=2,1e3,n=p^3\27;if(isprime(n),print1(n",")))

Extensions

Program and editing by Charles R Greathouse IV, Nov 09 2009

A163443 Primes p such that floor(p^3/27) is prime.

Original entry on oeis.org

17, 31, 103, 157, 179, 193, 233, 733, 827, 1097, 1129, 1327, 1543, 1597, 1723, 1831, 1889, 1907, 2069, 2137, 2393, 2677, 2803, 3163, 3257, 3433, 3617, 3797, 4261, 4999, 5233, 5237, 5309, 5449, 5701, 5939, 6079, 6173, 6637, 6781, 6961, 7069, 7321, 7879
Offset: 1

Views

Author

Keywords

Examples

			p=17 is in the sequence because [(17/3)^3] = [181.963] = 181 is prime.
p=31 is in the sequence because [(31/3)^3] = [1103.37] = 1103 is prime.
		

Crossrefs

Programs

  • Mathematica
    f[n_]:=IntegerPart[(p/3)^3]; lst={};Do[p=Prime[n];If[PrimeQ[f[p]],AppendTo[lst, p]],{n,7!}];lst

Extensions

Introduced standard terminology in the definition - R. J. Mathar, Aug 02 2009
Showing 1-3 of 3 results.