OFFSET
1,1
EXAMPLE
Sum of all 1-digit Pell numbers is 8.
Sum of all 2-digit Pell numbers is 111.
Sum of all 3-digit Pell numbers is 1562.
MATHEMATICA
With[{pnos=LinearRecurrence[{2, 1}, {0, 1}, 500]}, Table[Total[ Select[ pnos, IntegerLength[#]==n&]], {n, 20}]] (* Harvey P. Dale, Jun 13 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Sep 01 2007
EXTENSIONS
More terms from Harvey P. Dale, Jun 13 2011
STATUS
approved