The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A372491 Indices k such that A002533(k) is prime. 1
2, 3, 4, 5, 11, 17, 32, 53, 103, 107, 109, 113, 137, 197, 233, 811, 7993, 9281, 14387, 26573, 51361 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms are either primes or powers of 2.
LINKS
FORMULA
A111011(n) = A002533(a(n)).
EXAMPLE
a(3) = 4 is a term because A002533(4) = 73 is prime.
MAPLE
B[0]:= 1: B[1]:= 1: R:= NULL: count:= 0:
for n from 2 while count < 18 do
B[n]:= 2*B[n-1]+5*B[n-2];
if (isprime(n) or n = 2^padic:-ordp(n, 2)) and isprime(A[n]) then
R:= R, n; count:= count+1
fi
od:
R;
MATHEMATICA
Flatten[Position[LinearRecurrence[{2, 5}, {1, 1}, 1000] , _Integer?PrimeQ]-1] (* James C. McMahon, May 06 2024 *)
CROSSREFS
Sequence in context: A188532 A181288 A255260 * A333610 A052418 A051800
KEYWORD
nonn,more
AUTHOR
Robert Israel, May 03 2024
EXTENSIONS
a(21) from Michael S. Branicky, May 04 2024
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 June 6 00:30 EDT 2024. Contains 373110 sequences. (Running on oeis4.)