Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Comments on The Pell Numbers

Parent

The Pell Numbers

+4
−0

Introduction

The Pell(no, not Bell) Numbers are a simple, Fibonacci-like sequence, defined by the following relation:

$P_n=\begin{cases}0&\mbox{if }n=0;\\1&\mbox{if }n=1;\\2P_{n-1}+P_{n-2}&\mbox{otherwise.}\end{cases}$

They also have a closed form:

$P_n=\frac{\left(1+\sqrt2\right)^n-\left(1-\sqrt2\right)^n}{2\sqrt2}$

And a matrix multiplication based form, for the daring:

$\begin{pmatrix} P_{n+1} & P_n \\ P_n & P_{n-1} \end{pmatrix} = \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix}^n.$

Challenge

Your mission, should you choose to accept it, is to do any one of the following:

  1. Given $n$, calculate the $n^{th}$ term of the sequence (0 or 1-indexed).

  2. Given $n$, calculate the first $n$ elements of the sequence.

  3. Output the sequence indefinitely.

Scoring

This is code-golf. Shortest answer in each language wins.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Test cases (1 comment)
Post
+2
−0

APL (Dyalog Classic), 20 18 17 16 bytes

⊢/,+.×⍣⎕⍨∘.+⍨⌽⍳2

Matrix implementation, requires ⎕IO←0. Thanks to @Razetime for the idea, -3 bytes by me

Try it online!

APL (Dyalog Classic), 19 18 bytes

{⍵<2:⍵⋄+/∇¨⍵-1,⍳2}

Generic recursive implementation part 2

-1 byte thanks to @Razetime

Try it online!

APL (Dyalog Classic), 26 bytes

{×⍵:⌊0.5+(∇⍵-1)÷1-⍨2*÷2⋄1}

Random fun implementation

Try it online!

APL (Dyalog Classic), 26 bytes

{a←⍳⌈⍵÷2⋄(2*a)+.×⍵!⍨1+2×a}

Random fun implementation 2

Try it online!

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

General comments (8 comments)
General comments
Razetime‭ wrote about 3 years ago · edited about 3 years ago

fun matrix multiplication(20): 4⊃,+.×⍣⎕⍨2 2⍴2 1 1 0

Razetime‭ wrote about 3 years ago
Quintec‭ wrote about 3 years ago

@Razetime i shaved 2 bytes off your fun matrix implementation - its now tied

Razetime‭ wrote about 3 years ago · edited about 3 years ago

I think your link is wrong, and the program doesn't seem to work correctly

Razetime‭ wrote about 3 years ago

I got 19 bytes: ⊢/,+.×⍣⎕⍨2-⍨∘.+⍨⌽⍳2 from it

Quintec‭ wrote about 3 years ago

@Razetime I fixed the link, it just needed ⎕IO←0

Razetime‭ wrote about 3 years ago

ah ok makes sense

Razetime‭ wrote about 3 years ago

remove the brackets for -2