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.

A067134 Numbers n such that sigma(n+1) = 2*sigma(n-1).

This page as a plain text file.
%I A067134 #14 Jun 24 2014 01:08:20
%S A067134 119,1559,2939,17759,19919,32219,33839,55964,71039,186779,308039,
%T A067134 511499,523775,553499,699359,838214,1048904,1159379,1328939,1333247,
%U A067134 1700039,2462687,2703887,2956079,3115319,3561095,3764207,3972695,7625879,7852919,8048963
%N A067134 Numbers n such that sigma(n+1) = 2*sigma(n-1).
%C A067134 For each term given here, n+1 is divisible by 3, but that's not always true; n=12396999 is a counterexample.
%H A067134 Donovan Johnson, <a href="/A067134/b067134.txt">Table of n, a(n) for n = 1..1000</a>
%t A067134 Flatten[Position[Partition[DivisorSigma[1,Range[8100000]],3,1],_?(Last[#] == 2*First[#]&),{1},Heads->False]]+1 (* _Harvey P. Dale_, Aug 19 2013 *)
%o A067134 (PARI) s1=1; s2=3; for(n=2, 10^8, s3=sigma(n+1); if(s3==2*s1, print1(n ", ")); s1=s2; s2=s3) /* _Donovan Johnson_, Apr 06 2013 */
%Y A067134 Cf. A055574, A067135.
%K A067134 nonn
%O A067134 1,1
%A A067134 _Benoit Cloitre_, Feb 18 2002
%E A067134 Edited by _Dean Hickerson_, Feb 20 2002