OFFSET
1,1
COMMENTS
The terms of A064736 lie on two (curved) lines; this is one of them.
Sequence is: a(1) = 2, a(2) = 3. m is in the sequence if and only if there is no i such that a(i) * a(i+1) = m, where i are indices of terms in the sequence so far. By definition, this is the complement of A286090. - David A. Corneth, May 25 2017
Apparently the same as A121229 shifted by one place. - R. J. Mathar, May 25 2017
LINKS
Ray Chandler, Table of n, a(n) for n = 1..10000
Ray Chandler, Table of n, a(n) for n = 1..1000000 (large gzipped file)
EXAMPLE
See comments: 4 is in the sequence, since the terms so far, 2 and 3, don't multiply to 4. Same for 5. Sequence so far is: 2, 3, 4, 5. 6 isn't in the sequence. 7 is. Carrying on we get 2, 3, 4, 5, 7, 8, 9, 10, 11. 12 isn't in the sequence. Further in the sequence, 30 is in the sequence though it's of the form k*(k+1) for k = 5. But 6 isn't in the sequence. And indeed, 5 and 7 are consecutive terms so 5*7 = 35 isn't in the sequence. - David A. Corneth, May 25 2017
PROG
(PARI) upto(n) = {my(l=List([2, 3]), i = 1, p = 6, op = 3);
while(1, if(op>=n, return(l)); for(j=op + 1, p-1, listput(l, j)); i++; op = p; p = l[i]*l[i+1])}
is(n) = !is_A286290(n)
is_A286290(n) = if(n < 6, return(n==1)); if(issquare(n+1, &n), is(n), if(sqrtint(4*n+1)^2 == 4*n+1, s = sqrtint(4*n+1); !(is(s\2) || is(s\2+1)), return(0))) \\ David A. Corneth, May 25 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, May 23 2017
STATUS
approved