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.

A369913 a(n) = Sum_{p|n, p prime} n^sopf(n/p).

This page as a plain text file.
%I A369913 #6 Jul 09 2025 16:34:24
%S A369913 0,1,1,16,1,252,1,64,729,100100,1,248976,1,105413700,762750,256,1,
%T A369913 1895400,1,1280000400,1801097802,584318301411812,1,7963200,9765625,
%U A369913 2481152873203737252,19683,10578455954192,1,677994300000,1,1024,50542106513762754
%N A369913 a(n) = Sum_{p|n, p prime} n^sopf(n/p).
%F A369913 a(p^k) = p^(p*(k-floor(1/k))) for p prime and k>=1. - _Wesley Ivan Hurt_, Jul 09 2025
%t A369913 a[n_] := Sum[p, {p, Select[Divisors[n], PrimeQ]}]; Table[DivisorSum[n, n^a[n/#] &, PrimeQ[#] &], {n, 40}]
%Y A369913 Cf. A008472 (sopf), A369744, A369911, A369912.
%K A369913 nonn,easy
%O A369913 1,4
%A A369913 _Wesley Ivan Hurt_, Feb 05 2024