[go: up one dir, main page]

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

Showing entries 1-10 | older changes
a(n) is the least term that is not a power of p, the n-th prime, in the sequence of numbers whose consecutive divisors have a ratio satisfying numerator - denominator = p-1.
(history; published version)
#34 by N. J. A. Sloane at Sun Jan 15 13:19:02 EST 2017
STATUS

proposed

approved

#33 by Michel Marcus at Sun Jan 15 12:40:13 EST 2017
STATUS

editing

proposed

#32 by Michel Marcus at Sun Jan 15 04:36:25 EST 2017
PROG

(PARI) / * alternate program; does it give the least terms? */

isokplus(n, plus) = {my(vd = divisors(n)); for (k=1, #vd - 1, r = vd[k+1]/vd[k]; if (numerator(r) != denominator(r) + plus, return(0)); ); return(1); }

findqq(p) = {ok = 0; ip = 1; while (!ok, ik = 1; while (!ok, if (isprime(q= ik*p^ip+(p-1)) && isokplus(p^ip*q, p-1), return([p^ip, q])); ik++; if (ik > p, break); ); ip ++; ); return ([]); }

listff(nn) = {for (n=1, nn, p = prime(n); v = findqq(p); pp = v[1]; q = v[2]; print1(pp*q, ", "); ); }

Discussion
Sun Jan 15
12:40
Michel Marcus: I don't know if this new program gives the least terms ?
#31 by Michel Marcus at Sun Jan 15 04:01:19 EST 2017
COMMENTS

p=23, a(9) <= 78317141783; p=73, a(21) <= 151362235513.

p=29, a(10) <= 176994576151121533000319046029;

p=47, a(15) <= 7654455761751330268890575447204341560894807321851181994954582195247;

p=61, a(18) <= 9876832533549882665273701;

p=67, a(19) <= 4483224940666198270986387212125921182677251147716597066996042973310060661858239362623427;

p=71, a(20) <= 269277687648484922419868038102292093702042951;

p=73, a(21) <= 151362235513.

#30 by Michel Marcus at Sun Jan 15 02:47:45 EST 2017
STATUS

proposed

editing

#29 by Michel Marcus at Sat Jan 14 17:00:07 EST 2017
STATUS

editing

proposed

#28 by Michel Marcus at Sat Jan 14 16:58:09 EST 2017
DATA

6, 15, 725, 91, 15851, 30589, 6977093777, 703

COMMENTS

For primes 17 < p < 100, index n, prime p and known values: (8, 19, 703), (11, 31, 1891), (12, 37, 270), (13, 41, 2893001), (14, 43, 6324702343), (16, 53, 8036549), (17, 59, 12319259), (22, 79, 12403), (23, 83, 48023219), (24, 89, 63439289), (25, 97, 18721).

For some other primes, I found possible values, were found, but they may not be the least.

p=17, a(7) <= 6977093777; p=23, a(9) <= 78317141783; p=73, a(21) <= 151362235513.

Discussion
Sat Jan 14
17:00
Michel Marcus: Searching up to 7*10^9, a(7)=6977093777 is confirmed; so I moved it to data section, along with a(8).
#27 by Michel Marcus at Sat Jan 14 14:53:39 EST 2017
COMMENTS

For primes 17 < p < 100, index n, prime p and known values: (8, 19, 703), (11, 31, 1891), (12, 37, 270), (13, 41, 2893001), (14, 43, 6324702343), (16, 53, 8036549), (17, 59, 12319259), (22, 79, 12403), (23, 83, 48023219), (24, 89, 63439289), (25, 97, 18721).

p=17, a(7) <= 6977093777; p=23, a(9) <= 78317141783; p=73, a(21) <= 151362235513.

p=43, a(14) <= 6324702343; p=73, a(21) <= 151362235513.

STATUS

approved

editing

Discussion
Sat Jan 14
14:54
Michel Marcus: Serching up to 7*10^9, a(14)=6324702343 is confirmed
#26 by N. J. A. Sloane at Fri Jan 13 19:55:39 EST 2017
STATUS

proposed

approved

#25 by Jon E. Schoenfield at Fri Jan 13 19:23:34 EST 2017
STATUS

editing

proposed