login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A214032 Places n where A214030(n) = n-2. 2
17, 67, 109, 137, 181, 191, 229, 233, 239, 257, 283, 307, 311, 349, 353, 359, 479, 523, 547, 593, 599, 617, 643, 709, 719, 829, 839, 657, 883, 907, 911, 953, 977, 1021, 1031, 1069, 1097, 1123, 1151, 1193, 1217, 1319, 1433, 1439, 1483 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence is to A214030 as A000057 is to A001177. It would be nice to have an interpretation of this sequence akin to the interpretation of A000057 as the set of primes which divide all Fibonacci sequences, having arbitrary initial values for a(1),a(2). The linearly recursive sequence which seems to be associated to this is 3*f(n)=6*f(n-1)+2*f(n-2), but this does not have integral values.
If we use the sequence 3,2,3,2,3,2.. instead of 2,3,2,3,... we end up with the same sequence a(n).
LINKS
PROG
(PARI)
{b23(n)=local(t, m=1, s=[n]); if (n<2, 0, while(1,
if(m%2, s=concat(s, 2), s=concat(s, 3));
t=contfracpnqn(concat(s, n));
t=contfrac(n*t[1, 1]/t[2, 1]);
if(t[1]<n^2||t[#t]<n^2, m++, break)); m)};
/* To print the sequence A214032(n) to the screen, */
for(i=1, 1500, if(b23(i)==i-2, print1(i, ", ")));
CROSSREFS
Sequence in context: A095071 A095072 A180529 * A039452 A171748 A141940
KEYWORD
nonn
AUTHOR
Art DuPre, Jul 12 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 08:08 EDT 2024. Contains 371782 sequences. (Running on oeis4.)