OFFSET
1,2
COMMENTS
Conjecture: With the exception of the first term a(1)=1, this is exactly the sequence of primes of the form 6k+1 (A002476). This has been verified up to a(n)=2000.
LINKS
R. J. Mathar, Table of n, a(n) for n = 1..10000
Jon Maiga, Computer-generated formulas for A123365, Sequence Machine.
MAPLE
n := 1 :
a := 1 :
while n <= 10000 do
printf("%d %d\n", n, a) ;
a := a+1 ;
while A046530(a) <> (a+2)/3 do
a := a+1 ;
end do:
n := n+1 ;
end do: # creates b-file, R. J. Mathar, Sep 21 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
John W. Layman, Oct 12 2006
STATUS
approved