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.

A268733 a(n) = A000203(A251720(n)).

This page as a plain text file.
%I A268733 #10 Jun 02 2025 12:16:11
%S A268733 28,78,248,684,1862,3294,6140,9144,16590,27872,37734,59094,75812,
%T A268733 90864,121878,171780,219542,257244,328104,378362,432240,530964,627570,
%U A268733 785078,969714,1071512,1157004,1271270,1366974,1649024,2145924
%N A268733 a(n) = A000203(A251720(n)).
%C A268733 Let p=prime(n)=A000040(n) and q=prime(n+1)=A000040(n+1) then a(n)=sigma(p^2*q)=1+p+q+p^2+ p*q+p^2*q.
%t A268733 p=1; Table[p=NextPrime[p];q=NextPrime[p];1+p+q+p^2+p*q+p^2*q,{20}]
%o A268733 (PARI) p=1;for(n=1,20,p=nextprime(p+1);q=nextprime(p+1);print1(sigma(p^2*q)","))
%Y A268733 Cf. A000040, A000203, A251720.
%K A268733 nonn
%O A268733 1,1
%A A268733 _Zak Seidov_, Feb 12 2016