login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A182559
a(n) = a(n-2)*2 + floor(sqrt(a(n-1))).
1
0, 1, 1, 3, 3, 7, 8, 16, 20, 36, 46, 78, 100, 166, 212, 346, 442, 713, 910, 1456, 1858, 2955, 3770, 5971, 7617, 12029, 15343, 24181, 30841, 48537, 61902, 97322, 124115, 194996, 248671, 390490, 497966, 781685, 996816, 1564368, 1994882, 3130148, 3991533, 6262293
OFFSET
0,4
LINKS
FORMULA
a(0)=0, a(1)=1, a(n) = a(n-2)*2 + floor(sqrt(a(n-1))).
MATHEMATICA
RecurrenceTable[{a[0]==0, a[1]==1, a[n]==2a[n-2]+Floor[Sqrt[a[n-1]]]}, a, {n, 50}] (* Harvey P. Dale, Jul 25 2019 *)
PROG
(Python)
import math
prpr = 0
prev = 1
for n in range(55):
current = prpr*2 + int(math.sqrt(prev))
print(prpr, end=', ')
prpr = prev
prev = current
CROSSREFS
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, May 05 2012
STATUS
approved