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.

A069192 Sum of the reversals of the divisors of n.

This page as a plain text file.
%I A069192 #20 May 22 2025 10:21:34
%S A069192 1,3,4,7,6,12,8,15,13,9,12,37,32,51,60,76,72,102,92,15,23,36,33,87,58,
%T A069192 96,85,137,93,72,14,99,48,117,66,190,74,177,128,27,15,96,35,84,123,99,
%U A069192 75,232,102,66,90,125,36,219,72,210,170,180,96,105,17,42,68,145,93,144,77,207,132,117,18,267,38,123,169,248
%N A069192 Sum of the reversals of the divisors of n.
%H A069192 Indranil Ghosh, <a href="/A069192/b069192.txt">Table of n, a(n) for n = 1..50000</a>
%H A069192 Pe, J. <a href="http://www.numeratus.net/enlightened/pictureperfect.html">The Picture-Perfect Numbers</a>
%e A069192 The divisors of 10 are 1,2,5,10, which reversed are 1,2,5,1, summing to 9. Therefore a(10) = 9.
%p A069192 read("transforms") ;
%p A069192 A069192 := proc(n)
%p A069192         add(digrev(d),d=numtheory[divisors](n)) ;
%p A069192 end proc: # _R. J. Mathar_, Sep 09 2015
%t A069192 f[n_] := FromDigits[Reverse[IntegerDigits[n]]]; g[n_] := Apply[Plus, Map[f, Divisors[n]]]; Table[g[i], {i, 1, 40}]
%o A069192 (Python)
%o A069192 def A069192(n):
%o A069192     s=0
%o A069192     for i in range(1,n+1):
%o A069192         if n%i==0: s+=int(str(i)[::-1])
%o A069192     return s # _Indranil Ghosh_, Feb 10 2017
%Y A069192 Cf. A000203, A069250.
%K A069192 base,nonn
%O A069192 1,2
%A A069192 _Joseph L. Pe_, Apr 19 2002
%E A069192 Added more terms, corrected offset. - _N. J. A. Sloane_, May 19 2013