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.

A015916 Numbers k such that sigma(k) + 10 = sigma(k+10).

This page as a plain text file.
%I A015916 #23 Jul 03 2021 19:52:53
%S A015916 3,7,13,19,31,37,43,61,73,79,97,103,127,139,157,163,181,223,229,241,
%T A015916 271,283,307,337,349,373,379,409,421,433,439,457,499,547,577,607,631,
%U A015916 643,673,691,709,733,751,787,811,829,853,877,919,937,967,1009
%N A015916 Numbers k such that sigma(k) + 10 = sigma(k+10).
%C A015916 Different from A023203. Below 1000000 the only composite number here is 195556: sigma(195556) + 10 = 342230 + 10 = sigma(195566). - _Labos Elemer_, May 23 2000
%H A015916 Vincenzo Librandi, <a href="/A015916/b015916.txt">Table of n, a(n) for n = 1..1000</a>
%t A015916 Select[Range[2000], DivisorSigma[1, #] + 10==DivisorSigma[1, # + 10] &] (* _Vincenzo Librandi_, Mar 10 2014 *)
%t A015916 Select[Partition[DivisorSigma[1,Range[1100]],11,1],#[[1]]+10==#[[-1]]&][[All,1]]-1 (* _Harvey P. Dale_, May 20 2021 *)
%Y A015916 Cf. A023203, A015913, A015914, A015915, A015917.
%K A015916 nonn
%O A015916 1,1
%A A015916 _Robert G. Wilson v_