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!)
A277439 Numerators of a sequence defined by a modified recurrence for the exponential of the von Mangoldt function. 2
1, 2, 3, 4, 5, 6, 7, 16, 27, 20, 11, 12, 13, 56, 135, 64, 85, 18, 19, 320, 567, 352, 115, 144, 175, 832, 1215, 2240, 29, 30, 217, 2560, 8019, 78336, 70, 5184, 925, 1064, 199017, 1120, 451, 42, 5375, 315392, 5670, 329728, 2585, 1152, 91 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If n is equal to the average of twin prime pairs then the ratio A277439(n)/A277440(n) is equal to n by definition of the recurrence.
Conjecture for n > 2: The ratio is equal to n if and only if n is the average of twin prime pairs.
LINKS
FORMULA
Numerators of the ratio a(n)/A277440(n), which is the first column of the array (T(n,k): n,k >= 1) that is defined by the following recurrence:
T(1,1) = 1.
T(n,k) = if k = 1 then n/(Product_{i=1..n-1}(T(n + 1, k + i)))/(Product_{i=1..n-1}(T(n - 1, k + i))) else if(mod(n, k) = 0 then T(n/k, 1) else 1) else 1).
EXAMPLE
The ratio starts: 1, 2, 3/2, 4, 5/6, 6, 7/24, 16/3, 27/40, 20/3, 11/120, 12, 13/42, ..., where the integer terms are 1, 2, 4, 6, 12,.... For n > 2, the latter sequence equals A014574 (average of twin primes).
MATHEMATICA
Clear[t]; nn = 49; t[1, 1] = 1; t[n_, k_] := t[n, k] = If[k == 1, n/Product[t[n + 1, k + i], {i, 1, n - 1}]/Product[t[n - 1, k + i], {i, 1, n - 1}], If[Mod[n, k] == 0, t[n/k, 1], 1], 1]; a = Table[t[n, 1], {n, 1, nn}]; Denominator[a]; Numerator[a]
CROSSREFS
Cf. A014574, A277440 (denominators).
Sequence in context: A332535 A285724 A193551 * A069188 A085158 A065639
KEYWORD
nonn,frac
AUTHOR
Mats Granvik, Oct 15 2016
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 July 28 11:05 EDT 2024. Contains 374691 sequences. (Running on oeis4.)