cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A285124 Min(|d(k+1-i) - d(i)|, for i = 1..k), where d(1),..,d(k) are the divisors of prime(n) + 1.

This page as a plain text file.
%I A285124 #8 Dec 12 2023 14:16:13
%S A285124 2,0,1,2,1,5,3,1,2,1,4,17,1,7,2,3,4,29,13,1,35,2,5,1,7,11,5,3,1,13,8,
%T A285124 1,17,4,5,11,77,37,2,23,3,1,4,95,7,10,49,2,7,13,5,1,11,4,37,10,3,1,
%U A285124 137,41,67,7,8,11,155,47,79,13,17,11,53,2,7,5,1,8
%N A285124 Min(|d(k+1-i) - d(i)|, for i = 1..k), where d(1),..,d(k) are the divisors of prime(n) + 1.
%H A285124 Clark Kimberling, <a href="/A285124/b285124.txt">Table of n, a(n) for n = 1..10000</a>
%F A285124 a(n)=A056737(A008864(n)).
%e A285124 prime(6) + 1 = 14 has divisors 1,2,7,14, so that k=4 and d(k+1-i) - d(i) ranges through {--13,-5,5,13}, so that a(6) = 5.
%t A285124 f[n_] := f[n] = Prime[n]+1;
%t A285124 Table[Divisors[f[n]] - Reverse[Divisors[f[n]]], {n, 1, 10}]
%t A285124 Table[Min[Abs[Divisors[f[n]] - Reverse[Divisors[f[n]]]]], {n, 1, 100}]
%Y A285124 Cf. A008864, A002378, A056737.
%K A285124 nonn,easy
%O A285124 1,1
%A A285124 _Clark Kimberling_, Apr 11 2017