OFFSET
1,1
COMMENTS
Numbers that occur more than once in array A371100.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..15532
EXAMPLE
PROG
(PARI)
A371094(n) = { my(m=1+3*n, e=valuation(m, 2)); ((m*(2^e)) + (((4^e)-1)/3)); };
isA372292(n) = if(!(n%2), 0, my(c=0); forstep(k=1, n, 2, if(A371094(k)==n, c++)); (c>1));
(PARI)
search_up_to = 1398101;
A371094(n) = { my(m=1+3*n, e=valuation(m, 2)); ((m*(2^e)) + (((4^e)-1)/3)); };
A372292list(up_to_n) = { my(v=vector((1+up_to_n)/2), x, lista=List([])); forstep(k=1, up_to_n, 2, x=A371094(k); if(x <= up_to_n, v[(x+1)/2]++)); for(i=1, (1+up_to_n)/2, if(v[i]>1, listput(lista, i+i-1))); Vec(lista); };
v372292 = A372292list(search_up_to);
A372292(n) = v372292[n];
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Apr 26 2024
STATUS
approved