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!)
A133370 Primes p such that p does not divide any term of the Apery sequence A005259 . 24
2, 3, 7, 13, 23, 29, 43, 47, 53, 67, 71, 79, 83, 89, 101, 103, 107, 109, 113, 127, 131, 137, 149, 157, 167, 173, 199, 223, 229, 239, 263, 269, 277, 281, 311, 313, 317, 337, 349, 353, 359, 373, 383, 389, 397, 401, 409, 421, 449, 457, 461, 467, 479, 487, 491 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Malik and Straub give arguments suggesting that this sequence is infinite. - N. J. A. Sloane, Aug 06 2017
LINKS
Amita Malik and Armin Straub, Divisibility properties of sporadic Apéry-like numbers, Research in Number Theory, 2016, 2:5.
E. Rowland, R. Yassawi, Automatic congruences for diagonals of rational functions, arXiv preprint arXiv:1310.8635 [math.NT], 2013.
MATHEMATICA
NeverDividesLucasSeqQ[a_, p_] := And @@ Table[Mod[a[n], p]>0, {n, 0, p-1}];
A3[a_, b_, c_, n_ /; n < 0] = 0;
A3[a_, b_, c_, 0] = 1;
A3[a_, b_, c_, n_] := A3[a, b, c, n] = (((2n - 1)(a (n-1)^2 + a (n-1) + b)) A3[a, b, c, n-1] - c (n-1)^3 A3[a, b, c, n-2])/n^3;
A3[a_, b_, c_, d_, n_ /; n < 0] = 0;
Agamma[n_] := A3[17, 5, 1, n];
Select[Range[1000], PrimeQ[#] && NeverDividesLucasSeqQ[Agamma, #]&] (* Jean-François Alcover, Aug 05 2018, copied from Amita Malik's notebook *)
CROSSREFS
For primes that do not divide the terms of the sequences A000172, A005258, A002893, A081085, A006077, A093388, A125143, A229111, A002895, A290575, A290576, A005259 see A260793, A291275-A291284 and A133370 respectively.
Sequence in context: A003509 A238432 A238423 * A237283 A332861 A182047
KEYWORD
nonn
AUTHOR
Philippe Deléham, Oct 27 2007
EXTENSIONS
Terms a(16) onwards computed by Amita Malik - N. J. A. Sloane, Aug 21 2017
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 May 19 07:00 EDT 2024. Contains 372666 sequences. (Running on oeis4.)