[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A174408 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Primes of the form A174335(i)-1 or A174335(i)+1.
(history; published version)
#10 by Alois P. Heinz at Sun Aug 05 12:01:31 EDT 2018
STATUS

proposed

approved

#9 by Jon E. Schoenfield at Sun Aug 05 10:37:26 EDT 2018
STATUS

editing

proposed

#8 by Jon E. Schoenfield at Sun Aug 05 10:37:10 EDT 2018
EXAMPLE

a(1) = 17 = 16 *( 1^3) *( 1!) + 1 is prime.

a(2) = 257 = 16 *( 2^3) *( 2!) + 1 is prime.

a(3) = 2591 = 16 *( 3^3) *( 3!) - 1 is prime.

a(4) = 2593 = 16 *( 3^3) *( 3!) + 1 is prime.

a(5) = 239999 = 16 *( 5^3) *( 5!) - 1 is prime.

a(6) = 2488319 = 16 *( 6^3) *( 6!) - 1 is prime.

a(7) = 27659519 = 16 *( 7^3) *( 7!) - 1 is prime.

a(8) = 27659521 = 16 *( 7^3) *( 7!) + 1 is prime.

a(9) = 330301441 = 16 *( 8^3) *( 8!) + 1 is prime.

a(10) = 4232632319 = 16 *( 9^3) *( 9!) - 1 is prime.

a(11) = 58060799999 = 16 *( 10^3) *( 10!) - 1 is prime.

a(12) = 13243436236801 = 16 *( 12^3) *( 12!) + 1 is prime.

a(13) = 70614415872000001 = 16 *( 15^3) *( 15!) + 1 is prime.

STATUS

proposed

editing

#7 by Michel Marcus at Sun Aug 05 10:31:51 EDT 2018
STATUS

editing

proposed

#6 by Michel Marcus at Sun Aug 05 10:31:48 EDT 2018
MAPLE

A174335 := proc(n) 16*n^3*n! ; end proc: for i from 1 to 60 do a := A174335(i) ; if isprime(a-1) then printf("%d, ", a-1) ; end if; if isprime(a+1) then printf("%d, ", a+1) ; end if; end do: [From _# _R. J. Mathar_, Apr 15 2010]

STATUS

approved

editing

#5 by Russ Cox at Fri Mar 30 18:40:51 EDT 2012
AUTHOR

_Jonathan Vos Post (jvospost3(AT)gmail.com), _, Mar 19 2010

Discussion
Fri Mar 30
18:40
OEIS Server: https://oeis.org/edit/global/228
#4 by Russ Cox at Fri Mar 30 17:40:18 EDT 2012
MAPLE

A174335 := proc(n) 16*n^3*n! ; end proc: for i from 1 to 60 do a := A174335(i) ; if isprime(a-1) then printf("%d, ", a-1) ; end if; if isprime(a+1) then printf("%d, ", a+1) ; end if; end do: [From _R. J. Mathar (mathar(AT)strw.leidenuniv.nl), _, Apr 15 2010]

EXTENSIONS

One more term from _R. J. Mathar (mathar(AT)strw.leidenuniv.nl), _, Apr 15 2010

Discussion
Fri Mar 30
17:40
OEIS Server: https://oeis.org/edit/global/190
#3 by Nathaniel Johnston at Wed Apr 27 16:33:23 EDT 2011
STATUS

proposed

approved

#2 by Nathaniel Johnston at Wed Apr 27 16:33:19 EDT 2011
DATA

17, 257, 2591, 2593, 239999, 2488319, 27659519, 27659521, 330301441, 4232632319, 58060799999, 13243436236801, 70614415872000001, 3429209878281350809286344704000001, 1665505492033205854772229590583093971095149084672000000001

KEYWORD

easy,more,nonn

STATUS

approved

proposed

#1 by N. J. A. Sloane at Tue Jun 01 03:00:00 EDT 2010
NAME

Primes of the form A174335(i)-1 or A174335(i)+1.

DATA

17, 257, 2591, 2593, 239999, 2488319, 27659519, 27659521, 330301441, 4232632319, 58060799999, 13243436236801, 70614415872000001, 3429209878281350809286344704000001

OFFSET

1,1

FORMULA

a(n) = {A000040(i)} INTERSECTION ({16*(j^3)*(j!) - 1} UNION {16*(k^3)*(k!) - 1}).

EXAMPLE

a(1) = 17 = 16*(1^3)*(1!) + 1 is prime.

a(2) = 257 = 16*(2^3)*(2!) + 1 is prime.

a(3) = 2591 = 16*(3^3)*(3!) - 1 is prime.

a(4) = 2593 = 16*(3^3)*(3!) + 1 is prime.

a(5) = 239999 = 16*(5^3)*(5!) - 1 is prime.

a(6) = 2488319 = 16*(6^3)*(6!) - 1 is prime.

a(7) = 27659519 = 16*(7^3)*(7!) - 1 is prime.

a(8) = 27659521 = 16*(7^3)*(7!) + 1 is prime.

a(9) = 330301441 = 16*(8^3)*(8!) + 1 is prime.

a(10) = 4232632319 = 16*(9^3)*(9!) - 1 is prime.

a(11) = 58060799999 = 16*(10^3)*(10!) - 1 is prime.

a(12) = 13243436236801 = 16*(12^3)*(12!) + 1 is prime.

a(13) = 70614415872000001 = 16*(15^3)*(15!) + 1 is prime.

MAPLE

A174335 := proc(n) 16*n^3*n! ; end proc: for i from 1 to 60 do a := A174335(i) ; if isprime(a-1) then printf("%d, ", a-1) ; end if; if isprime(a+1) then printf("%d, ", a+1) ; end if; end do: [From R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 15 2010]

CROSSREFS
KEYWORD

easy,more,nonn

AUTHOR

Jonathan Vos Post (jvospost3(AT)gmail.com), Mar 19 2010

EXTENSIONS

One more term from R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Apr 15 2010

STATUS

approved