[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 A139065 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Numbers k for which (7+k!)/7 is prime.
(history; published version)
#54 by Bruno Berselli at Sun Nov 20 10:24:05 EST 2016
STATUS

reviewed

approved

#53 by Joerg Arndt at Sun Nov 20 09:59:25 EST 2016
STATUS

proposed

reviewed

#52 by Jon E. Schoenfield at Sun Nov 20 09:55:28 EST 2016
STATUS

editing

proposed

#51 by Jon E. Schoenfield at Sun Nov 20 09:55:25 EST 2016
COMMENTS

Primes For primes of the form (7+k!)/7 , see A139064.

STATUS

proposed

editing

#50 by Robert Price at Sun Nov 20 09:43:36 EST 2016
STATUS

editing

proposed

#49 by Robert Price at Sun Nov 20 09:35:30 EST 2016
DATA

11, 15, 16, 25, 35, 59, 64, 68, 82, 121, 149, 238, 584, 912, 3349, 4111, 4324, 15314, 19944, 20658, 22740, 23364

COMMENTS

a(23) > 25000. - Robert Price, Nov 20 2016

EXTENSIONS

a(18)-a(22) from Robert Price, Nov 20 2016

STATUS

approved

editing

#48 by N. J. A. Sloane at Sun Jan 24 17:15:17 EST 2016
NAME

Numbers k for which (7 + k!)/7 is prime.

COMMENTS

For primes Primes of the form (7 + k!)/7, see A139064.

Formulation: Such sequences can be generated by writing k in increasing order provided that A000142(k) = [|c|]*(A000040(m)-1) for some m where |.| is the absolute value function and [.] is either the ceiling function or floor function, where c is complex number. Abdul Gaffar Khan, Nov 29 2015

FORMULA

a(n) = k if A000142(k) = 7*(A000040(m)-1) for some m. - Abdul Gaffar Khan, Nov 29 2015

EXAMPLE

For example, in A139065, if [.] is ceiling function let c=-6.4+0.2i, if [.] is floor function let c=-7.4+0.2i in particular.For other examples of formulation, see A002981, A082672, A089085, A139058, A139063, ... etc. Abdul Gaffar Khan, Nov 29 2015

MATHEMATICA

A139065[n_] := If[PrimeQ[(7 + (n!))*(1/7)] == True, n, 0];

Delete[DeleteDuplicates[Table[A139065[n], {n, 0, 64}]], 1] (* Abdul Gaffar Khan, Nov 29 2015 *)

A139065[n_] :=

If[PrimeQ[(Ceiling[

Abs[c]] + (FromDigits[IntegerDigits[n, 10]])!)*(1/

Ceiling[Abs[c]])] == True, n, 0];

Delete[DeleteDuplicates[Table[A139065[n], {n, 0, 64}]], 1]

(* replace complex number in place of c to get sequences of type A139065* *and Replace Ceiling with Floor for formluation of complex numbers*) (* Abdul Gaffar Khan, Dec 02 2015 *)

PROG

(MAGMA) [n: n in [7..300] | IsPrime((7 + Factorial(n)) div 7)]; // Vincenzo Librandi, Nov 30 2015

KEYWORD

nonn,hard,more,changed

STATUS

proposed

approved

#47 by Abdul Gaffar Khan at Sun Jan 24 10:58:33 EST 2016
STATUS

editing

proposed

#46 by Abdul Gaffar Khan at Sun Jan 24 10:53:25 EST 2016
COMMENTS

From _Formulation: Such sequences can be generated by writing k in increasing order provided that A000142(k) = [|c|]*(A000040(m)-1) for some m where |.| is the absolute value function and [.] is either the ceiling function or floor function, where c is complex number. _Abdul Gaffar Khan_, Nov 29 2015: (Start)

Formulation:

(a) For Real Numbers:

Such sequences can be generated by writing k in increasing order provided that A000142(k) = |[j]|*(A000040(m)-1) for some m where |.| is modulus function, [.] is either the ceiling function or floor function, and |[j]| = q where j is real number lying in the set as follows: if [.] is ceiling function, then j lies in set {j|q-1<j<=q or -q<=j<q+1} and if [.] is floor function then j lies in set {j|q<=j<q+1 or -q<j<=q}. For example, in A139065, if [.] is ceiling function then j lies in set {j|6<j<=7 or -7<=j<8} and if [.] is floor function then j lies in set {j|7<=j<8 or -6<j<=7}.

(b) For Complex Numbers:

Such sequences can be generated by writing k in increasing order provided that A000142(k) = [|c|]*(A000040(m)-1) for some m where |.| is the absolute value function and [.] is either the ceiling function or floor function, where c is complex number. For example, in A139065, if [.] is ceiling function let c=-6.4+0.2i, if [.] is floor function let c=-7.4+0.2i in particular.

For other examples, see A002981, A082672, A089085, A139058, A139063, ... etc.

(End)

EXAMPLE

For example, in A139065, if [.] is ceiling function let c=-6.4+0.2i, if [.] is floor function let c=-7.4+0.2i in particular.For other examples of formulation, see A002981, A082672, A089085, A139058, A139063, ... etc. Abdul Gaffar Khan, Nov 29 2015

#45 by Danny Rorabaugh at Mon Jan 18 12:00:14 EST 2016
STATUS

proposed

editing