OFFSET
1,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
J. N. Cooper and A. W. N. Riasanovsky, On the Reciprocal of the Binary Generating Function for the Sum of Divisors, 2012; J. Int. Seq. 16 (2013) #13.1.8
N. J. A. Sloane, Families of Essentially Identical Sequences, Mar 24 2021 (Includes this sequence)
MAPLE
seq(floor((n-1/2)*(2+2*sqrt(2))), n=1..70); # Muniru A Asiru, Oct 07 2018
MATHEMATICA
Table[Floor[(2*n - 1)*(1 + Sqrt[2])], {n, 1, 100}] (* G. C. Greubel, Oct 05 2018 *)
PROG
(Sage) [floor((n-1/2)*(2+2*sqrt(2))) for n in range(1, 65)]
(PARI) vector(100, n, floor((2*n - 1)*(1 + sqrt(2)))) \\ G. C. Greubel, Oct 05 2018
(Magma) [Floor((2*n - 1)*(1 + Sqrt(2))): n in [1..100]] // G. C. Greubel, Oct 05 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Alexander Riasanovsky, Aug 10 2012
STATUS
approved