OFFSET
1,2
COMMENTS
Natural numbers starting from 0,1,2,3,...
LINKS
Hieronymus Fischer, Table of n, a(n) for n = 1..1000
FORMULA
From Hieronymus Fischer, Sep 27 2012: (Start)
If we define A007504(0):=0, then the formulas above are also true for n=1.
a(n) = A034959(n)/2.
(End)
EXAMPLE
{0,1} #2 S=1;
{2,3,4} #3 S=9;
{5,6,7,8,9} #5 S=35;
{10,11,12,13,14,15,16} #7 S=91.
MATHEMATICA
{1}~Join~Map[Abs@ Apply[Subtract, Map[PolygonalNumber, #]] &, Partition[Accumulate@ Prime@ Range@ 37 - 1, 2, 1]] (* Michael De Vlieger, Oct 06 2019 *)
PROG
(Python)
from itertools import islice
from sympy import nextprime
def A034957_gen(): # generator of terms
a, p = 0, 2
while True:
yield p*((a<<1)+p-1)>>1
a, p = a+p, nextprime(p)
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick De Geest, Oct 15 1998
STATUS
approved